如何在.net core 2.2中使用扩展名路由url https://domain.xxx/path/name.extension

时间:2019-07-13 05:24:15

标签: .net .net-core

routes.MapRoute(
    name: "oldPath",
    template: "path/{id:int}/{name}.aspx",
    defaults: new { area = "", controller = "Legacy", action = "OldPath" }
 );

在.Net Core 2.2中,上面的路由为我生成404,有什么建议吗?

0 个答案:

没有答案