asp.net mvc 默认首页设置静态文件
1)站点根目录增加了index.html;
2)修改Global.asax默认的路由注册,去掉默认controller:
routes.MapRoute(
"Default", // 路由名称
"{controller}/{action}/{id}", // 带有参数的 URL
new {action = "Index", id = UrlParameter.Optional } // 参数默认值
);
3)将iis中的默认文档配置为index.html