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"));
}
}