ASP.NET MVC3 实现全站重定向的简单方法
这篇文章主要介绍了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
收藏文章
精彩图集
精彩文章