欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

asp.net的Global.asax中做301跳转

程序员文章站 2023-12-28 10:39:28
...

301跳转可以把网址权重传递集中到规范化网址中,网上也有讲很多种跳转方法,这里记一下Global.asax的Application_BeginRequest 方法中写,下面举例子输入xx.net时候跳转到www.xx.com:

    protected void Application_BeginRequest(Object sender, EventArgs e)
    {
        if (System.Web.HttpContext.Current.Request.ServerVariables["SERVER_NAME"].ToLower().Equals("xx.net"))
        {
            string newurl = "http://www.xx.com" + System.Web.HttpContext.Current.Request.RawUrl;
            System.Web.HttpContext.Current.Response.Clear();
            System.Web.HttpContext.Current.Response.StatusCode = 301;
            System.Web.HttpContext.Current.Response.Status = "301 Moved Permanently";
            System.Web.HttpContext.Current.Response.AddHeader("Location", newurl);
        }
    }

 

上一篇:

下一篇: