使用301重定向 - 51windows.Net
51windows.Net > 技术文档 > Web开发 > ASP > Code Sample > Asp应用 > 使用301重定向

使用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:
<script runat="server">
private void Page_Load(object sender, System.EventArgs e)
{
 Response.Status = "301 Moved Permanently";
 Response.AddHeader("Location","http://www.51windows.net/);
}
</script>






网站推荐:
虎的笑话 虎的成语 虎的歇后语
在线小游戏 成语排行榜 歇后语排行榜 中华五千年 文革图片


转载本站内容,请务必保留原作者信息。
本站提供的内容部分是在网上搜集,如果侵犯了您的版权,请告之,我们会删除内容或加上您的信息。(网站留言站内搜索)