MVC 操作别名重定向
本文关键字:重定向 别名 操作 MVC | 更新日期: 2023-09-27 18:32:16
我的HomeController
中有一个这样的操作:
public ActionResult HowItWorks()
{
return View();
}
我可以像您所期望的那样通过/Home/HowItWorks
来访问它。
如果我去/HowItWorks
,我怎样才能让它去同一个地方(省略"Home"前缀)?
我知道我可以在RouteConfig.cs
中更改它,但我想知道是否有属性或类似的东西。
routes.MapRoute(
name: "HowItWorks",
url: "HowItWorks",
defaults: new { controller = "Home", action = "HowItWorks", id = UrlParameter.Optional }
);
你可以像上面一样做。是的,你需要把它放在RouteConfig.cs
如果您希望所有方法都像这样工作,则可以使用以下方法:
routes.MapRoute(
name: "HomePages",
url: "{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
但在这种情况下,您只能使用单个控制器,当且仅当您未定义自定义路由时
,如下所示: routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
请注意,路由的优先级很重要。 即:先匹配的将被接受。
我知道我可以在 RouteConfig 中更改它.cs但我想知道是否 有一个属性或类似的东西。
看看AttributeRouting,它很酷。