IUrlHelper and support for RouteOptions.LowercaseUrls
IUrlHelper and support for RouteOptions.LowercaseUrls #issue : https://github.com/aspnet/Mvc/issues/7720
This commit is contained in:
parent
72a7c31973
commit
695fb00308
|
|
@ -154,6 +154,11 @@ namespace Microsoft.AspNetCore.Routing
|
||||||
if (_options.LowercaseUrls)
|
if (_options.LowercaseUrls)
|
||||||
{
|
{
|
||||||
urlWithoutQueryString = urlWithoutQueryString.ToLowerInvariant();
|
urlWithoutQueryString = urlWithoutQueryString.ToLowerInvariant();
|
||||||
|
|
||||||
|
if (!string.IsNullOrEmpty(queryString))
|
||||||
|
{
|
||||||
|
queryString = queryString.ToLowerInvariant();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_options.AppendTrailingSlash && !urlWithoutQueryString.EndsWith("/"))
|
if (_options.AppendTrailingSlash && !urlWithoutQueryString.EndsWith("/"))
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue