谁能教我怎么在同一个空间放2个不同域名的网站哦

谁能教我怎么在同一个空间放2个不同域名的网站哦,第1张

第一步、在网站所用空间里新建一个文件夹如x2,将第二个网站的内容上传进去

第二步、打开万网域名解析系统,将第二个域名即x2.com的域名解析中添加url转发。即

www.x2.com

转发到

www.x1.com/x2

(此处x2指第一步中新建文件夹的名称)。如果当中有A记录最好删除了。

半小时或者再长点时间后即可通过

www.x2.com

打开网页

www.x1.com/x2

里面的内容了

要想放多个网站,必须要空间支持才行,只要空间支持的话,那就可以通过子域名绑定来完成建设多个网站,否则的话,就只有通过域名跳转那些来实现,而有的代码也不支持方在子目录的。紫光数据提供带子目录绑定的空间,价格便宜,而且是独立ip,无论是做企业网站还是个人网站,都非常利于seo优化。

如果有有一个空间,而你又想放置多个多个站点,这些代码可以帮到你

ASP 代码

<%if Request.ServerVariables("SERVER_NAME")="themoon.org.ru" then

response.redirect "mylife"

else

response.redirect "index1.htm"

end if%>

ASP 代码

<%

select case request.servervariables("http_host")

case "[url]www.themoon.org.ru[/url]" '1

Server.Transfer("along.htm")

case "[url]www.themoon.pp.ru[/url]" '2

Server.Transfer("net.htm")

case "[url]www.themoon.com.cn[/url]" '3

Server.Transfer("null.htm")

...... 继续添加 ......

end select

%>

ASP 代码

<%if instr(Request.ServerVariables

("SERVER_NAME"),"themoon.org.ru")>0 then

response.redirect "index.asp"

else if instr(Request.ServerVariables

("SERVER_NAME"),"themoon.pp.ru")>0 then

response.redirect "x/index.asp"

else if instr(Request.ServerVariables

("SERVER_NAME"),"themoon.com.cn")>0 thenr

esponse.redirect "index3.asp"

end if

end if

end if%>

ASP 代码

<%if Request.ServerVariables("SERVER_NAME")="[url]www.themoon.org.ru[/url]" then

response.redirect "main1.asp"

else if Request.ServerVariables("SERVER_NAME")="themoon.org.ru" then

response.redirect "main1.asp"

else if Request.ServerVariables("SERVER_NAME")="[url]www.themoon.pp.ru[/url]" then

response.redirect "/web/index.asp"

else if Request.ServerVariables("SERVER_NAME")="themoon.pp.ru" then

response.redirect "/web/index.asp"

end if

end if

end if

end if%>

ASP 代码

<%

'取得HTTP输入的值并付值到HTOST中

host=lcase(request.servervariables("HTTP_HOST"))

'开始条件跳转

SELECT CASE host

' 如果HOST的值是[url]www.cctribe.com[/url]就选择事件case"[url]themoon.org.ru[/url]"的命令

CASE "[url]themoon.org.ru[/url]"

' Below is the redirect command

response.redirect "mylife/"

CASE "[url]themoon.pp.ru[/url]"

response.redirect "lovewall/"

'We use CASE ELSE to fix any other requests

CASE ELSE

response.redirect "guestbook/"

END SELECT

%>

JavaScript 代码

<script>

try

{ if( self.location == "http://玉米一/" )

{

top.location.href = "http://玉米一/目录"

}

else if( self.location == "http://玉米二/" )

{

top.location.href = "http://玉米二/目录"

}

else if( self.location == "http://玉米三/" )

{

top.location.href = "http://玉米三/目录"

}

else if( self.location == "http://玉米四/" )

{

top.location.href = "http://玉米四/目录"

}

else

{ document.write ("错误的访问地址") }

}

catch(e) { }

</script>

PHP 代码

<?php

switch ($_SERVER["HTTP_HOST"]) {

case "themoon.org.ru":

header("location:mylife")

break

default:

header("location:lovewall")

break

}

?>

PHP代码

<?php

$domain_net="cctribe.com"

$dot_net_url="bbs/"

$dot_com_url="flash"

if(($HTTP_HOST=="$domain_net")or($HTTP_HOST=="[url]www.$domain_net[/url]"))

{

Header("Location: $dot_net_url")

}

else

{

Header("Location: $dot_com_url")

}

?>


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/13080.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-02-12
下一篇2023-02-12

发表评论

登录后才能评论

评论列表(0条)

    保存