MVC下设置默认页为index.html

将RouteConfig代码修改为如下

    public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapMvcAttributeRoutes(); routes.MapRoute(
name: "Home",
url: "{controller}/{action}",
defaults: "index"
);
}
}

随后打开IIS管理器中的默认文档功能

MVC下设置默认页为index.html

将index.html移至第一个即可

上一篇:微软更新导致的IIS7设置默认主页无效


下一篇:【HDU1856】More is better(并查集基础题)