有些站长,因为经济原因,买个一个空间,想实现做多个网站的目的,有些虚拟主机不支持绑定子目录,怎么办?用以下代码可以实现这个功能
<%
if Request.ServerVariables("SERVER_NAME")="tongchuangwei.com" then
response.redirect "/cn"
elseif Request.ServerVariables("SERVER_NAME")="www.tongchuangwei.com" then
response.redirect "/cn"
end if
if Request.ServerVariables("SERVER_NAME")="www.szbjds.com" then
response.redirect "/html/main.asp"
elseif Request.ServerVariables("SERVER_NAME")="szbjds.com" then
response.redirect "/html/main.asp"
end if
%>
|
上一篇:文字围绕图片代码
下一篇:favicon.ico教程