asp做的网站,如何设置301重定向啊?

2024年11月19日 16:43
有1个网友回答
网友(1):

1.网站域名更换的情况下
在 index.asp 或 default.asp 的最顶部加入以下几行(首页为index.asp):
代码如下:
<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","网址"
Response.End
%>
2.将不带WWW的域名或其他域名重定向到一个主域名,那么只需要加个判断:
ASP重定向代码(首页为index.asp):
<%
if request.ServerVariables("HTTP_HOST")=" baidu.com" then
Response.Status="301 Moved Permanently"
Response.AddHeader "Location"," http://www.baidu.com"
Response.End
end if
%>