+ -
当前位置:首页 → 问答吧 → 301重定向 问题

301重定向 问题

时间:2011-08-18

来源:互联网

<%
  Response.Status="301 Moved Permanently"
  Response.AddHeader "Location","http://www.imbuygold.com"
  %>

放了这段代码 老是报 500 (Internal Server) Error

求解 谢谢了!!!

作者: gshmj   发布时间: 2011-08-18

ASP:完美301
<%

Dim thishttpUrl,oldurl,newurl
oldurl="xxx.com"' 原域名
newurl="www.xxx.com"' 新域名
thishttpUrl=Request.ServerVariables("HTTP_HOST")
if thishttpUrl=oldurl then 
Response.Status="301 Moved Permanently"
if Request.ServerVariables("Query_String")="" then
  Response.AddHeader "Location", "http://"&newurl&Request.ServerVariables("Url")
  else
  Response.AddHeader "Location", "http://"&newurl& Request.ServerVariables("Url")&"?"& Request.ServerVariables("Query_String")
  end if
end if

%>

作者: snyywzm   发布时间: 2011-08-18

这错误跟301 没什么关系, 是你服务器出了问题

作者: buker19999   发布时间: 2011-08-18

引用 2 楼 buker19999 的回复:
这错误跟301 没什么关系, 是你服务器出了问题



我用的是虚拟主机

作者: gshmj   发布时间: 2011-08-18