将MVC2升级到MVC5后,我的路由不再起作用:
routes.MapRoute(
"Default", // Route name
"{controller}.aspx/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
);
如果我删除了.aspx,它将起作用。
如何使它与.aspx后缀一起使用?我无法在生产中将其删除