21
2017
04

ASP 301重定向

 <%
if request.ServerVariables("HTTP_HOST")<>"www.xxx.com"  then
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","http://www.xxx.com/"
Response.End
end if
%>

下一篇 »