Having some trouble with some routes. I don\'t fully understand the MVC routing system so bear with me.
I\'ve got two controllers, Products and Home (with more to co
Have you tried:
routes.MapRoute(
"Home_About",
"About",
new { controller = "Home", action = "About" } );
routes.MapRoute(
"Default",
"{controller}/{action}/{id}",
new { controller = "home", action = "index", id = UrlParameter.Optional }
);
Products should still be handled by the Default route, while the first one can handle your About route.