Я делаю return RedirectToAction("Index", "Clients");
с моего домашнего контроллера .... Это нормально, но мой URL выглядит как http://localhost:1115/Clients/Index
... Как удалить индекс из URL в asp.net mvc?Любое предложение ....
Мои маршруты,
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
"Registrations",
"{controller}/{action}/{id}",
new { controller = "Registration", action = "Create", id = "" }
);
routes.MapRoute(
"Clients",
"Clients/{action}/{id}",
new { controller = "Clients", action = "Index", id = "" }
);
}
Но, тем не менее, оно не удаляет index
из моего URL ...