Routing

Learn about how routing is handled in ASP.NET Core.

What is routing?

Routing is the ability to access different pages within a single domain name. It matches incoming HTTP requests and redirects to the applicationโ€™s executable endpoints. Endpoints are parts of your code that handle requests and give an appropriate response.

How is it achieved?

Applications can achieve routing by using a handful different of ways. But in this lesson, you will be focusing on controller routing. The name of the controller determines a route. For example, if ...