ASP.NET MVC 自定义后缀路由设置

RouteConfig中添加路由
routes.MapRoute(
name: "ky",
url: "{controller}/{action}.ky",
defaults: new { controller = "Home", action = "Index" }//UrlParameter.Optional
);

形如
url: "{controller}/{action}/{id}.ky",
的话页面内跳转直接ActionName就不好用了 所以一般习惯直接*.ky?ID=1
类似 首页



同时WebConfig中configuration > system.webServer > modules 的runAllManagedModulesForAllRequests 属性设为true






 




IIS8以下版本需要添加额外设置~

你可能感兴趣的:(ASP.NET,MVC,asp.net,mvc,routeConfig)