I would like to direct the following URL:
http://myweburl/Wheel/466/Direction/903/Highlight/7
To a controller action:
public ActionResult Index(int wheel, int direction, int highlight)
On the controller VehicleController
I still want to keep my Home/Index as the root url of the site. So if someone entered
http://myweburl/
They would be directed to Home/Index
How do I do this?