为什么MVC升级后我的路由后缀不再起作用

时间:2019-01-08 08:09:20

标签: asp.net asp.net-mvc routing

将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后缀一起使用?我无法在生产中将其删除

0 个答案:

没有答案