如果我将 [Route(" WhatEver")] 应用于我用作默认网站路由的操作,则在访问网站根目录时会收到HTTP 404。
例如:
添加属性路由:
// file: App_Start/RouteConfig.cs
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapMvcAttributeRoutes(); // Add this line
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
}
}
添加路由属性
[RoutePrefix("Zome")]
public class HomeController : Controller
{
[Route(Name = "Zndex")]
public ActionResult Index()
{
return View();
}
...
}
现在,当您启动项目进行调试时,您将遇到HTTP错误404.我应该如何使用默认路由映射的属性路由?
答案 0 :(得分:2)
对于使用带路由前缀的属性路由的默认路由,您需要将路由模板设置为空字符串。如果控制器已有路由前缀,您还可以使用~/
覆盖站点根目录。
[RoutePrefix("Zome")]
public class HomeController : Controller {
[HttpGet]
[Route("", Name = "Zndex")] //Matches GET /Zome
[Route("Zndex")] //Matches GET /Zome/Zndex
[Route("~/", Name = "default")] //Matches GET / <-- site root
public ActionResult Index() {
return View();
}
//...
}
也就是说,在控制器上使用属性路由时,它不再匹配基于约定的路由。控制器要么全部基于属性,要么基于所有基于约定的不混合。
答案 1 :(得分:0)
启动站点时,App_Start文件夹中的route.config文件中设置了默认路由。它看起来像这样:
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
如果您不再拥有&#34;索引&#34;在您的家庭控制器中的操作,该站点试图将其作为主页并且将返回404.您可以更新您的route.config文件以引用新的主页。