In the ASP. NET Core project, lower-case routing URLs are implemented. asp. netcore
In earlier versions of ASP. net mvc, we can set routes. LowercaseUrls = true in the RegisterRoutes method of the application to convert the URL link of the page to lowercase. In ASP. NET Core MVC, the routing configuration is similar to the following code:
App. UseMvc (assumeroutes => {assumeroutes. MapRoute ("Default", "{controller = App}/{action = Index}/{id ?} ");});
The problem is that the configureRoutes instance type does not contain properties similar to LowercaseUrls, so we cannot configure the URL lowercase function here.
In ASP. NET Core, the LowercaseUrls configuration still exists, but needs to be configured in another place. To implement a lower-case routing URL in the ASP. NET Core project, you only need to add the code to the ConfigureService method of the Startup class.
Services. AddRouting (options => options. LowercaseUrls = true );
This article was published in September 29, 2017 and passed the test on the netcoreapp2.0 + AspNetCore 2.0 platform. It runs well.