MVC3用以下代码实现全站重定向
代码如下:
protected void Application_BeginRequest(object sender, EventArgs e)
{
string strUrl = Request.Url.ToString().Trim().ToLower();
if (strUrl.Contains("http://Vevb.com"))
{
Response.RedirectPermanent(strUrl.Replace("http://Vevb.com", "//www.Vevb.com"));
}
}
实现如:http://Vevb.com/about 重定向到 //www.Vevb.com/about
新闻热点
疑难解答
图片精选