2

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

任何帮助将不胜感激!

4

1 回答 1

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 }
);
于 2013-04-02T09:46:25.517 回答