我如何摆脱ASP.Net MVC中的Home?

时间:2020-03-05 18:40:34  来源:igfitidea点击:

我知道此站点是使用ASP.Net MVC编写的,但在URL中看不到" / Home"。这向我证明了可以做到。我需要什么特殊路线?

解决方案

回答

只需将" Home"更改为空字符串即可。

routes.MapRoute(
    "Home",
    "",
    new { action = Index, controller = Home }
);

回答

如果我们在IIS 7上运行,则只需删除ASP.NET MVC附带的Default.aspx文件(假设我们在Preview 3或者更高版本上运行)。由于.NET 3.5 SP1中已修复的Cassini问题,因此需要该文件。有关更多详细信息,请查看:

http://haacked.com/archive/2008/04/10/upcoming-changes-in-routing.aspx

http://haacked.com/archive/2008/05/12/sp1-beta-and-its-effect-on-mvc.aspx