我在路由中设置了一些值,但无法弄清楚如何使这些值永久使用该路由。
例如,我有这个:
routes.MapRoute(
name: "Default",
url: "{corpID}/{locationID}/{controller}/{action}/{id}",
defaults: new { corpID = "Test", locationID = 2, controller = "Home", action = "Index", id = UrlParameter.Optional }
);
我希望corpID和LocationID始终在路径中,因此我可以说/Controller/Action
,而不必总是包含CorpID/LocationID/Controller/Action