How to force all URLs to lowercase in ASP.NET Core 2.2 and newer version?

245 Views Asked by At

I want to convert all URLs to lowercase.

For example:

  • https://ABC123.com/ -> https://abc123.com/
  • https://StackoverFlow.com/ -> https://stackoverflow.com/

Thanks in advance

1

There are 1 best solutions below

3
Xinran Shen On

Do you want to force all URL to lowercase in browser? If it is, You can add

services.AddRouting(options => options.LowercaseUrls = true);

in your startup.cs class.

enter image description here