花开花谢,人来又走,夕阳西下,人去楼空,早已物是人非矣。也许,这就是结局,可我不曾想过结局是这样;也许,这就是人生的意义,可我不曾想竟是生离死别。
MVC3用以下代码实现全站重定向
protected void Application_BeginRequest(object sender, EventArgs e)
{
string strUrl = Request.Url.ToString().Trim().ToLower();
if (strUrl.Contains("http://haodaima.com"))
{
Response.RedirectPermanent(strUrl.Replace("http://haodaima.com", "//www.haodaima.com"));
}
}
实现如:http://haodaima.com/about 重定向到 //www.haodaima.com/about
本文ASP.NET MVC3 实现全站重定向的简单方法到此结束。远大抱负始于初中,辉煌人生起于今日。小编再次感谢大家对我们的支持!