MVC-4路由错误

时间:2013-03-04 04:33:09

标签: asp.net-mvc-4 asp.net-mvc-routing

我的路线如下:

routes.MapRoute(
            name: "SettingsRoute",
            url: "Settings/",
            defaults: new { controller = "Settings", action = "Index" }
            );

但它不起作用。当我在“设置/”之后添加任何字母时,它都有效。

举个例子:

routes.MapRoute(
            name: "SettingsRoute",
            url: "Settings/x", // or "Settings/q" or "Settings/z"
            defaults: new { controller = "Settings", action = "Index" }
            );

它正在发挥作用。

我做错了什么?

感谢。

0 个答案:

没有答案