MVC 4:将“索引”添加到url路径

时间:2013-04-02 09:28:53

标签: asp.net-mvc razor asp.net-mvc-4 asp.net-mvc-routing

由于某些特定原因,我需要.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。

非常感谢任何帮助!

1 个答案:

答案 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 }
);