由于某些特定原因,我需要.NET MVC 4不要自动从URL中删除“索引”。基本上我需要转换
http://example.com/到http://example.com/Index
或
http://example.com/foo到http://example.com/foo/Index
问题是@ URL.Action(“Index”,“Foo”)只输出/ Foo,我需要输出Foo / Index。
非常感谢任何帮助!
答案 0 :(得分:3)
您应该只能从路线映射中删除默认操作。
所以不要这样:
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
只需取出action = "Index"
:
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", id = UrlParameter.Optional }
);