I have a "HomeController" and my route is like this
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new {
controller = "Home", action ="Index", id = UrlParameter.Optional
}
);
I want url be like "web-design/Index" instead of "Home/Index".
how can i do that ?
thanks