在空间根目录建个.ASP文件,文件名改成首页的文件名,如:INDEX.ASP
以下有很多个方法,请选择
第一个 源代码
<%
if Request.ServerVariables("SERVER_NAME")="www.dzhai.com" then
response.redirect "williamlong/index.htm"
else
response.redirect "index2.htm"
end if
%>
或者:
<%if Request.ServerVariables("SERVER_NAME")="www.jocx.com.cn" then
response.redirect "index.htm"
else%>
<%end if%>
<%if Request.ServerVariables("SERVER_NAME")="jocx.com.cn" then
response.redirect "index2.htm"
else%>
<%end if%>
这个上传到空间,
空间绑定www.jocx.com.cn 和jocx.com.cn这两个域名后
效果如下:
www.jocx.com.cn 访问你的这空间,那它会自动转到“index.htm”页面上去
jocx.com.cn 访问你的这空间,那它会自动转到“index2.htm”页面上去
第二个 源代码
<%
select case request.servervariables("http_host")
case www.jocx.com.cn '1
Server.Transfer("index.html")
case "jocx.com.cn " '2
Server.Transfer("i.htm")
case www.xn--k2Rp3Q1nAs14E.cn '3
Server.Transfer("2007/index.htm")
...... 继续添加 ......
end select
%>
第三个 源代码
<%
if instr(Request.ServerVariables("SERVER_NAME"),"www.dzhai.com")>0 then
response.redirect "index.asp"
elseif instr(Request.ServerVariables("SERVER_NAME"),"www.6id.net")>0 then
response.redirect "x/index.asp"
elseif instr(Request.ServerVariables("SERVER_NAME"),"www.write100.com")>0 then
response.redirect "index3.asp"
end if
%>
第四个 源代码
<%
if Request.ServerVariables("SERVER_NAME")="www.dzhai.com" then
response.redirect "index1.asp"
elseif Request.ServerVariables("SERVER_NAME")="www.6id.net" then
response.redirect "index2.asp"
elseif Request.ServerVariables("SERVER_NAME")="www.write100.com" then
response.redirect "index3.asp"
end if
%>
第五个 源代码
<%
if Request.ServerVariables("SERVER_NAME")="www.dzhai.com" then
Server.Transfer("williamlong.htm")
elseif Request.ServerVariables("SERVER_NAME")="www.6id.net" then
Server.Transfer("moon.htm")
elseif Request.ServerVariables("SERVER_NAME")="www.write100.com" then
Server.Transfer("write100.htm")
else
Server.Transfer("other.htm")
end if
%>
以下代码是PHP空间,单空间多域名绑定
第一个 源代码
if($HTTP_HOST=="www.dzhai.com"){
Header("Location: moon.htm");
}
elseif($HTTP_HOST=="www.6id.net"){
Header("Location: williamlong.htm");
}
else{
Header("Location: other.htm");
}
第二个 源代码
if($HTTP_HOST=="www.jocx.com.cn"){
require "moon.htm";
}
elseif($HTTP_HOST=="jocx.com.cn"){
require "williamlong.htm";
}
else{
require "other.htm";
}