In the ASP. NET Core project, lower-case routing URLs are implemented. asp. netcore

Source: Internet
Author: User

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.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.