1

我想指向以下网址:

http://myweburl/Wheel/466/Direction/903/Highlight/7

对于控制器动作:

public ActionResult Index(int wheel, int direction, int highlight)

在控制器上,VehicleController我仍然希望将我的主页/索引保留为站点的根 url。所以如果有人进入

http://myweburl/

他们将被定向到Home/Index我该怎么做?

4

1 回答 1

2

只需将以下路由添加为默认路由(主页/索引)上方的路由

routes.MapRoute(
    name: "WheelRoute",
    url: "Wheel/{wheel}/Direction/{direction}/Highlight/{highlight}",
    defaults: new { controller = "VehicleController", action = "Index" }
 );
于 2012-11-12T03:03:57.323 回答