由于某些特定原因,我需要 .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。
任何帮助将不胜感激!
由于某些特定原因,我需要 .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。
任何帮助将不胜感激!
您应该能够从路由映射中删除默认操作。
所以代替这个:
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 }
);