首页 > 编程 > .NET > 正文

ASP.NET MVC3 实现全站重定向的简单方法

2024-07-10 12:43:50
字体:
来源:转载
供稿:网友

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表