mvc vs iis默认页面

有时候,再iis里面设置了web的默认页面index.html

希望跳转到这个页面index.html默认页面

而 mvc则跳转到路由里面的设置页面

mvc vs iis默认页面

怎么忽略这个呢.

设置路由可能是个好办法,能实现

不过  routes.IgnoreRoute("");很简单

 public static void RegisterRoutes(RouteCollection routes)
        {
            routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
            routes.IgnoreRoute("");
            //也很方便

            routes.MapRoute(
                name: "Default",
                url: "{controller}/{action}/{id}",
                defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
            );
        }

]]>

上一篇:LightOJ 1197 Help Hanzo 素数筛


下一篇:JQuery源码解析(十一)