首页 > Web开发 > 详细

MVC 路由设置伪静态

时间:2016-05-18 17:27:29      阅读:251      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!