asp.net-mvc – ASP.NET MVC中的小写URL

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – ASP.NET MVC中的小写URL前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以强制/扩展路由引擎以小写生成URL,给/ controller / action而不是/ Controller / Action?

解决方法

此外,您应强制将大写的任何传入请求重定向到小写版本.搜索引擎可以敏感地对待URL,这意味着如果您有多个链接到相同的内容,则该内容页面排名是分布式的,因此会被稀释.

返回此类链接的HTTP 301(永久移动)将导致搜索引擎“合并”这些链接,因此仅保留对您的内容的一个引用.

将这样添加到您的Global.asax.cs文件中:

protected void Application_BeginRequest(object sender,EventArgs e)
{
    // Don't rewrite requests for content (.png,.css) or scripts (.js)
    if (Request.Url.AbsolutePath.Contains("/Content/") ||
        Request.Url.AbsolutePath.Contains("/Scripts/"))
        return;

    // If uppercase chars exist,redirect to a lowercase version
    var url = Request.Url.ToString();
    if (Regex.IsMatch(url,@"[A-Z]"))
    {
        Response.Clear();
        Response.Status = "301 Moved Permanently";
        Response.StatusCode = (int)HttpStatusCode.MovedPermanently;
        Response.AddHeader("Location",url.ToLower());
        Response.End();
    }
}
原文链接:https://www.f2er.com/aspnet/249649.html

猜你在找的asp.Net相关文章