设为首页 | 收藏本页
登陆您的帐号 | 免费注册帐号
全部栏目 > 计算机 > 安全 > 加密解密
下一篇上一篇 首页图文展示(无图)

多个绑定多域名的ASP代码


等级:
文章:1|2
注册:2020-06-04
商号:未登记
信誉:查看资质
发布人:zyc
发布日期:2015-06-09 07:36:01
刷新日期:2015-06-09 07:36:01
回复或评论:0
阅览:652
如果只有一个ASP空间,而你又想放置多个多个站点,这些代码可以帮到你。
第一个 
<%
if Request.ServerVariables("SERVER_NAME")="www.ff87.com" then
response.redirect "default.html"
else
response.redirect "index.html"
end if
%>
第二个
<%
select case request.servervariables("http_host")
case "www.ff87.com" '1
Server.Transfer("v3.htm")
case "www.ff87.com" '1
Server.Transfer("v3.htm")
case "www.885s.com" '2
Server.Transfer("i.htm")
case "www.ff87.com" '3
Server.Transfer("blog.htm")
...... 继续添加 ......
end select
%>
第三个
<%
if instr(Request.ServerVariables("SERVER_NAME"),"www.ff87.com")>0 then
response.redirect "index.asp"
elseif instr(Request.ServerVariables("SERVER_NAME"),"www.885s.com")>0 then
response.redirect "x/index.asp"
elseif instr(Request.ServerVariables("SERVER_NAME"),"www.ff87.com")>0 then
response.redirect "index3.asp"
end if
%>
第四个
<%
if Request.ServerVariables("SERVER_NAME")="www.ff87.com" then
response.redirect "index1.asp"
elseif Request.ServerVariables("SERVER_NAME")="www.885s.com" then
response.redirect "index2.asp"
elseif Request.ServerVariables("SERVER_NAME")="wwww.ff87.com" then
response.redirect "index3.asp"
end if
%>
第五个
<%
if Request.ServerVariables("SERVER_NAME")="www.ff87" then
Server.Transfer("williamlong.htm")
elseif Request.ServerVariables("SERVER_NAME")="www.ff87.com" then
Server.Transfer("moon.htm")
elseif Request.ServerVariables("SERVER_NAME")="www.885s.com" then
Server.Transfer("blog.htm")
else
Server.Transfer("other.htm")
end if
%>
评论(0) 暂无回帖


打印 收藏 关闭窗口 下一篇上一篇