我的路线如下:
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" }
);
它正在发挥作用。
我做错了什么?
感谢。