免费绑定子目录代码

炫盾有个合租大空间速度快限制低,而且很想做几个网站,但是没有子目录绑定功能,所以相当的郁闷,而且合租的发起者也不给你开通,他说要保证服务器正常运转子目录多了说明站多了可能会浪费资源!炫盾经过几天的在网上的搜集与整理,介绍下面四个实现空间自由绑定子目录的办法,适用于支持ASP的空间!让你实现一个空间多个站点!

第一个

程序代码
*************开始此行不用***********************
response.redirect "zkj"
else
response.redirect "i.htm"
end if%>
****************结束此行不用*********************

第二个

程序代码
*************开始此行不用***********************
select case request.servervariables("http_host")
case "www.abseo.cn" '1
Server.Transfer("v3.htm")
case "www.sina.cn" '2
Server.Transfer("i.htm")
case "www.163.com" '3
Server.Transfer("yyjs.htm")
...... 继续添加 ......
end select
%>
****************结束此行不用*********************


第三个

程序代码
*************开始此行不用***********************
("SERVER_NAME"),"abseo.cn")>0 then
response.redirect "index.asp"
else if instr(Request.ServerVariables
("SERVER_NAME"),"163.com")>0 then
response.redirect "x/index.asp"
else if instr(Request.ServerVariables
("SERVER_NAME"),"sina.com")>0 thenr
esponse.redirect "index3.asp"
end if
end if
end if%>
****************结束此行不用*********************


第四个

程序代码
*************开始此行不用***********************
response.redirect "index1.asp"
else if Request.ServerVariables("SERVER_NAME")="www.cg8.org.cn" then
response.redirect "index2.asp"
else if Request.ServerVariables("SERVER_NAME")="www.163.com" then
response.redirect "index3.asp"
end if
end if
end if%>
****************结束此行不用*********************

大家要自己测试了,炫盾试过可以用的,不过可能你们自己直接用的时候会出问题,学会自己调试吧!

添加新评论