我有这条路线
routes.MapRoute(
"ViewGames", // Route name
"psp/{controller}/{action}", // URL with parameters
new { controller = "Games"} // Parameter defaults
);
我使用<%= Html.ActionLink("God of War", "godofwar", "Games")%>
了所有虽然它给了我这样的链接,somesite.com/psp/games/godofwar/
但另一个链接也变成了这样,例如我的家庭控制器变成了这个somesite.com/psp/home/about/
?
如何调用路由名称,以便其他人没有 ViewGames 路由?
我不想尝试这个<a href="/psp/games/godofwar/">
不好的......