如果只有一个ASP空间,而你又想放置多个多个站点,这些代码可以帮到你
第一个
程序代码
<%
if Request.ServerVariables("SERVER_NAME")="www.365jz.com" then
response.redirect "williamlong/index.htm"
else
response.redirect "index2.htm"
end if
%>
第二个
程序代码
<%
select case request.servervariables("http_host")
case "www.365jz.com" '1
Server.Transfer("v3.htm")
case "www.zfshow.com" '2
Server.Transfer("i.htm")
case "www.duzhe.la" '3
Server.Transfer("write100.htm")
...... 继续添加 ......
end select
%>
第三个
程序代码
<%
if instr(Request.ServerVariables("SERVER_NAME"),"www.365jz.com")>0 then
response.redirect "index.html"
elseif instr(Request.ServerVariables("SERVER_NAME"),"www.zfshow.com")>0 then
response.redirect "x/index.html"
elseif instr(Request.ServerVariables("SERVER_NAME"),"www.duzhe.la")>0 then
response.redirect "index3.html"
end if
%>
第四个
程序代码
<%
if Request.ServerVariables("SERVER_NAME")="www.365jz.com" then
response.redirect "index1.html"
elseif Request.ServerVariables("SERVER_NAME")="www.zfshow.com" then
response.redirect "index2.html"
elseif Request.ServerVariables("SERVER_NAME")="www.duzhe.la" then
response.redirect "index3.html"
end if
%>
第五个
程序代码
<%
if Request.ServerVariables("SERVER_NAME")="www.365jz.com" then
Server.Transfer("williamlong.htm")
elseif Request.ServerVariables("SERVER_NAME")="www.zfshow.com" then
Server.Transfer("moon.htm")
elseif Request.ServerVariables("SERVER_NAME")="www.duzhe.la" then
Server.Transfer("write100.htm")
else
Server.Transfer("other.htm")
end if
%>
这是一段很有用的代码,和绑定多域名的ASP代码类似,如果你只有一个PHP空间,而你又想放置多个多个站点,下面这些代码可以帮到你
第一个:
程序代码
if($HTTP_HOST=="www.365jz.com"){
Header("Location: moon.htm");
}
elseif($HTTP_HOST=="www.zfshow.com"){
Header("Location: williamlong.htm");
}
else{
Header("Location: other.htm");
}
第二个:
程序代码
if($HTTP_HOST=="www.365jz.com"){
require "moon.htm";
}
elseif($HTTP_HOST=="www.zfshow.com"){
require "williamlong.htm";
}
else{
require "other.htm";
}
二用JS来实现多域名的跳转
<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>
详解:
1:首先,你的空间必须支持ASP,并且这个空间可以绑定下面所用到的两个域名,然后新建一个ASP
的首页文件,这个ASP文件中的代码这么写:
<%if Request.ServerVariables("SERVER_NAME")="XXXX.cn" then '第一个输入的网址
response.redirect "index.html" '将它转发到相应的文件夹
else%>
<%end if%>
<%if Request.ServerVariables("SERVER_NAME")="www.XXXX.cn" then response.redirect
"index.html"
else%>
<%end if%>
<%if Request.ServerVariables("SERVER_NAME")="XXXX.cn" then '第二个输入的网址
response.redirect "soft/index.html" '将它转发到相应的文件
夹
else%>
<%end if%>
<%if Request.ServerVariables("SERVER_NAME")="www.XXXX.cn" thenresponse.redirect
"soft/index.html"
else%>
<%end if%>
2:写好后将这个文件存储为index.asp ,也就是要做你的首页。不用担心,这个是不会显示的。这
个就是自动识别访问者输入域名的,然后依据访问者输入的地址进行自动跳转的。跳转是在瞬间完
成的,你是看不到的。呵呵
3.现在要做的就是把你空间中建立两个不同的文件夹了,分别做为两个网站的目录。比如一个放音
乐的cd文件夹。一个放FLASH动画的flash夹件夹。里面的内容自己放!
4.开始上传刚才做的index.asp文件吧!把index.asp文件上传到空间根目录下。
5.去你的空间中将两个域名都进行绑定好,然后就可以测试了。
如对本文有疑问,请提交到交流论坛,广大热心网友会为你解答!! 点击进入论坛