我已经为某些 URL 做了一些 URL 路由。
routes.MapRoute(
"ProductDetails",
"Product/{name}/{*other}",
new { controller = "Product", action = "Details" }
);
上面的代码会将所有类型的 url 路由/Product/{name}
到/Product/Details/{parameter}
. 它工作正常,现在我希望如果我输入 url /Product/List
,这必须通过默认路由处理。
而且我不想再为 List 创建一条路线。
请指教。