If you want it to be configured for routing, you can do something like this:
routes.MapRoute( "AboutRoute", "About", new { controller = "Home", action = "About" }
I think you want to do? That is, have / About is handled by the home controller?
The default route (as shown below) processes / Home / About
routes.MapRoute( "Default", // Route name "{controller}/{action}/{id}", // URL with parameters new { controller = "Home", action = "Index", id = "" } // Parameter defaults );
source share