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", "https://www.jb51.net"));
}
}
实现如:http://jb51.net/about 重定向到 https://www.jb51.net/about
您可能感兴趣的文章:- ASP.NET MVC页面重定向简单介绍
- 详解SpringMVC重定向传参数的实现
- asp.net RewritePath重定向HTTP头Content-Location暴露真实路径解决方法
- Asp.Net实现404页面与301重定向的方法
- Windows虚拟主机与VPS如何实现301重定向(asp.net)
- 301重定向代码合集(iis,asp,php,asp.net,apache)
- asp.net php asp jsp 301重定向的代码(集合)
- Asp.Net 重定向必须要知道的一些资料
- ASP.NET 重定向的几种方法小结
- mvc重定向方式详解