是否可以强制/扩展路由引擎以小写生成URL,给/ controller / action而不是/ Controller / Action?
解决方法
此外,您应强制将大写的任何传入请求重定向到小写版本.搜索引擎可以敏感地对待URL,这意味着如果您有多个链接到相同的内容,则该内容的页面排名是分布式的,因此会被稀释.
返回此类链接的HTTP 301(永久移动)将导致搜索引擎“合并”这些链接,因此仅保留对您的内容的一个引用.
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(); } }