這篇文章主要介紹了ASP.NET MVC3 實現全站重定向的簡單方法,有需要的朋友可以參考一下
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", "http://www.jb51.net")); } } 實現如:http://jb51.net/about 重定向到 http://www.jb51.net/about