ASP.NET MVC 5 でルーティングを設定するにはどうすればよいですか。達成したいこと:定義され{controller}/{id}
ていない場合は、.{action}
Index()
id
私はこれを試しましたが、うまくいきませんでした:
// Keep default routing
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
// Add own routing in case of missing "action"
routes.MapRoute(
name: "Controller/Id",
url: "{controller}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);