是否可以通过简单的方法为包含许多剃须刀页面的区域文件夹定义新路线?
在mvc模式中,我们可以像这样轻松定义新路由:
routes.MapRoute(
name: "auth",
template: "auth/{action}",
defaults: new { area = "Identity", controller = "Account", action = "Login" }
);
但是我无法在Startup.cs文件中为具有许多剃须刀页面的文件夹定义新路由。 我应该使用约定吗?