At the moment I have just this route defined
routes.MapRoute(
"Default",
"{controller}/{action}/{id}",
new { controller = "Home", action = "Index", id = "" }
);
I want to map the /Home/Action1/id to just /Action1/id anybody knows how ?