我想指出以下网址:
http://myweburl/Wheel/466/Direction/903/Highlight/7
对控制器操作:
public ActionResult Index(int wheel, int direction, int highlight)
在控制器VehicleController
上,我仍然希望将我的主页/索引作为网站的根网址。所以,如果有人进入
http://myweburl/
他们将被定向到Home/Index
我该怎么做?
答案 0 :(得分:2)
只需将以下内容添加为默认路线(主页/索引)
上方的路线即可routes.MapRoute(
name: "WheelRoute",
url: "Wheel/{wheel}/Direction/{direction}/Highlight/{highlight}",
defaults: new { controller = "VehicleController", action = "Index" }
);