Go to the MvcApplication class (by default it is in the Global.asax.cs file) and add the following code to the RegisterRoutes(RouteCollection routes) function:
routes.MapRoute( "Login", // Route name "login", // URL with parameters new { controller = "root", action = "login" } // Parameter defaults );
source share