一般情况下空间没有论个的,都是容量,根据文件大小设置来分配,在根据文件设置网站!
如果你购买的空间,这样的空间就不能实现你说的,但是可以用其他方式实现!
如果有有一个空间,而你又想放置多个多个站点,这些代码可以帮到你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")
}
?>
第一步、在网站所用空间里新建一个文件夹如x2,将第二个网站的内容上传进去第二步、打开万网域名解析系统,将第二个域名即x2.com的域名解析中添加url转发。即
www.x2.com
转发到
www.x1.com/x2
(此处x2指第一步中新建文件夹的名称)。如果当中有A记录最好删除了。
半小时或者再长点时间后即可通过
www.x2.com
打开网页
www.x1.com/x2
里面的内容了
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)