ASP.NET – 重定向301

前端之家收集整理的这篇文章主要介绍了ASP.NET – 重定向301前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在ASP DOT NET中永久重定向?我想从我网站上一页301重定向到另一个页面

解决方法

protected void Page_PreInit(object sender,EventArgs e)
{
    Response.StatusCode = 301;
    Response.StatusDescription = "Moved Permanently";
    Response.RedirectLocation = "AnotherPage.aspx";
    HttpContext.Current.ApplicationInstance.CompleteRequest();
}

在4.0中,有一个简单的HttpResponse.RedirectPermanent()方法可以为您做上述任务:

Response.RedirectPermanent("AnotherPage.aspx");
原文链接:https://www.f2er.com/aspnet/252148.html

猜你在找的asp.Net相关文章