asp.net-mvc routing how to map Home/Action/id to just action/id ?
- by Omu
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 ?