【发布时间】:2015-02-16 22:38:04
【问题描述】:
我有以下两条路线,当用户登陆主页时,它会抛出 404。我错过了什么明显的东西吗?我希望他们转到 Home 控制器...
routes.MapRoute(
name: "Default",
url: "Home/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional },
namespaces: new[] { "Coin.Web.Controllers" }
);
routes.MapRoute(
name: "Organization",
url: "{organization}/{controller}/{action}/{id}",
defaults: new { controller = "Dashboard", action = "Index", id = UrlParameter.Optional },
namespaces: new[] { "Coin.Web.Controllers" }
提前致谢!
【问题讨论】:
-
在不知道您要使用的网址是什么的情况下,很难确定出了什么问题。
标签: asp.net-mvc asp.net-mvc-4 routes