码迷,mamicode.com
首页 > Web开发 > 详细

MVC 路由设置伪静态

时间:2016-05-18 17:29:45      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:

 public static void RegisterRoutes(RouteCollection routes)
        {
           routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
           routes.MapRoute("Defaults", "{controller}/{id}.html",
           new { controller = "Home", action = "Info", id = UrlParameter.Optional },
           new { controller = @"News|Solutions" },
           new[] { "Web.UI" });
         
          
            routes.MapRoute(
               name: "Default",
               url: "{controller}/{action}/{id}",
               defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional },
               namespaces: new string[1] { "Web.UI" }
           );
        }

  然后在Web.config 的<system.webServer>节点下添加<modules runAllManagedModulesForAllRequests="true" />

MVC 路由设置伪静态

标签:

原文地址:http://www.cnblogs.com/lkd3063601/p/5505775.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!