标签: asp.net asp.net-mvc asp.net-core asp.net-core-mvc asp.net-routing
在ASP.NET MVC 4中,我可以使用以下命令忽略某些路由:
public static void RegisterRoutes(RouteCollection routes) { routes.IgnoreRoute("{*old}", new {old=@"previous(/.*)?"}); }
.NET Core没有IgnoreRoute。有没有办法在.NET Core中实现这一目标? 也许是一些自定义中间件?
IgnoreRoute