Routing

Routing in MVC serves below important purpose for our web application:

  • Creates a mapping of easy-to-follow URLs to the controllers+actions we have in our web application

  • SEO = Search Engine Optimization: by properly choosing the right words for the routes you set in the URL and its contents (Controllers + Actions) in the RouteConfig, you make it easy for search engines to find your web page/contents for the related search terms.

Last updated

Was this helpful?