In the route config, you will have defaults: new { controller = "Home", action = "Index1", id = UrlParameter.Optional }
Here controller = "Home" instead of the defined public class HomeController : Controller. Does the compiler automatically append "Controller" at the end of Home?
Thanks!