在ASP程序中绑定域名,只能用绑定的域名访问网站。
2016-2-14 乱云飞 代码 标签: 绑定域名 ASP代码
<%if Request.ServerVariables("SERVER_NAME")<>"80c.cc" then
response.redirect "http://80c.cc/"
end if
%>
----------------------------------------------------------------
下面这几行代码是301重定向,效果应该优于上面的。
<%
if Request.ServerVariables("SERVER_NAME")<>"80c.cc" then
Response.Status="301 Moved Permanently"
Response.AddHeader "Location",http://80c.cc/
end if
%>
本文链接:http://80c.cc/ez/4.html
发表评论: