1)站点根目录增加了index.html;
2)修改Global.asax默认的路由注册,去掉默认controller:
routes.MapRoute(
"Default", // 路由名称 "{controller}/{action}/{id}", // 带有参数的 URL new {action = "Index", id = UrlParameter.Optional } // 参数默认值 );
3)将iis中的默认文档配置为index.html
本文共 280 字,大约阅读时间需要 1 分钟。
1)站点根目录增加了index.html;
2)修改Global.asax默认的路由注册,去掉默认controller:
routes.MapRoute(
"Default", // 路由名称 "{controller}/{action}/{id}", // 带有参数的 URL new {action = "Index", id = UrlParameter.Optional } // 参数默认值 );
3)将iis中的默认文档配置为index.html
转载于:https://www.cnblogs.com/kinolee/p/3713213.html