获取HTTP错误403.14 - 使用默认路由访问MVC应用程序时禁止访问

时间:2013-08-27 09:45:41

标签: c# .net asp.net-mvc routes iis-express

我在路线配置

中有这个
    public static void RegisterRoutes(RouteCollection routes)
    {
        routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

        routes.MapRoute(
            name: "Default",
            url: "Accessibility/{controller}/{action}/{id}",
            defaults: new { controller = "Cardholders", action = "Index", id = UrlParameter.Optional }
        );
    }

但是,当我在浏览器中查看我的项目时,它似乎没有重定向到我指定的操作。它保持在http://localhost:54358/,这可能是我收到http错误的原因。

我直接查看该页面没有问题,例如,在http://localhost:54358/Accessibility/Cardholders/Index

浏览它

这可能是什么问题?

1 个答案:

答案 0 :(得分:0)

您没有与localhost匹配的路由

如果您尝试“localhost:54358 / Accessibility”,它应该可以正常工作

如果您希望localhost转到持卡人页面,您的路线应为:

routes.MapRoute(
    name: "Default",
    url: "{controller}/{action}/{id}",
    defaults: new { controller = "Cardholders", action = "Index", id = UrlParameter.Optional }
);