参见英文答案 >
ASP.NET MVC – Removing controller name from URL5个
如何从MVC 5中的URL中删除控制器名称.我尝试在route.config中添加路由
如何从MVC 5中的URL中删除控制器名称.我尝试在route.config中添加路由
public class RouteConfig { public static void RegisterRoutes(RouteCollection routes) { routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); routes.MapMvcAttributeRoutes(); routes.MapRoute( name: "Default",url: "{controller}/{action}/{id}",defaults: new { controller = "Home",action = "Index",id = UrlParameter.Optional } ); routes.MapRoute( name: "Special",url: "action/{id}",action = "LandingIndex",id = UrlParameter.Optional } ); } }
当我尝试在http://localhost:24220/LandingIndex之前访问URL时,它将提示404错误.
如何解决这个问题
解决方法
您可以尝试通过先放置更专业的路径来反转路径定义.此外,您可能不希望将操作名称硬编码为操作,而是使用{action}占位符:
public class RouteConfig { public static void RegisterRoutes(RouteCollection routes) { routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); routes.MapMvcAttributeRoutes(); routes.MapRoute( name: "Special",url: "{action}",action = "LandingIndex" } ); routes.MapRoute( name: "Default",id = UrlParameter.Optional } ); } }
现在,当您导航到/ LandingIndex时,应调用Home控制器上的LanginIndex操作.
另请注意,我已从第一个路径中删除了可选的{id}占位符.原因是因为如果存在,路由引擎将永远不会使用第二条路由.例如,如果您尝试加载/ Home / Index,它将在Home控制器上查找Home操作并将其作为id传递给Index.如果您想拥有此{id}令牌,则需要使用约束来与第二个更通用的路由定义进行歧义.例如,如果您的标识符始终是整数或遵循某种模式,则可以编写与其匹配的正则表达式约束.