Yes, maybe just add a new route to your Global.asax as follows:
routes.MapRoute( "Default with new param", // Route name "{newParameter}/{controller}/{action}/{id}", // URL with parameters new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults );
Put this in front of the default route, as it is more specific.
Then create an action method that takes the newParameter parameter as the method parameter
source share