I tried to change my default route template:
- {controller=Home}/{action=About}/{id?}
But when I start my project (without any url path - just: http://localhost:49406/) it always loads the Index instead of the About. I have no other routes and I don't use attribute routing at all.
I also tried to change the default controller:
- {controller=Main}/{action=Index}/{id?}
It loads the HomeController's Index instead of the MainController's Index.
Is it a bug or I forgot something?