MVC路由出现错误错误

时间:2018-08-23 11:23:25

标签: asp.net-mvc

我正在使用MVC应用程序,发生了最奇怪的事情,我能够导航到名为“ / Reports”的路线,该路线使我可以转到“ / Reports / Index”,但是现在我得到了此403.14-禁止的错误。奇怪的是,我可以导航到/ Reports / Index并且可以正常工作,但是现在所有链接都断开了,因为我无法导航到“ / Reports”,也可以导航到“ / Companies”和“ / Quotes”只是为了让您知道。我没有更改路由配置中的任何内容,如下所示:

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

        routes.MapMvcAttributeRoutes();

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

0 个答案:

没有答案