使用301重定向 - 51windows.Net

来源:百度文库 编辑:神马文学网 时间:2024/04/28 02:19:04

使用301重定向

来自:51windows.Net  作者:海娃整理

使用 Response.Redirect "51windows.asp" 转向方法的HTTP Status Code 为302

下面是301转向的代码:

asp:
Response.Status="301 Moved Permanently"
Response.AddHeader "Location", "http://www.51windows.net/"
Response.End

Php:
header("HTTP/1.1 301 Moved Permanently");
header("Location:http://www.51windows.net/);
exit();

ASP.NET: