当前位置:Gxlcms > asp.net > ASP.NET MVC3 实现全站重定向的简单方法

ASP.NET MVC3 实现全站重定向的简单方法

时间:2021-07-01 10:21:17 帮助过:11人阅读

MVC3用以下代码实现全站重定向
代码如下:
protected void Application_BeginRequest(object sender, EventArgs e)
        {
            string strUrl = Request.Url.ToString().Trim().ToLower();
            if (strUrl.Contains("http://jb51.net"))
            {
                Response.RedirectPermanent(strUrl.Replace("http://jb51.net", "//www.gxlcms.com"));
            }
        }

实现如:http://jb51.net/about 重定向到 //www.gxlcms.com/about

人气教程排行