I have the following route:
routes.MapRoute(
"Contracts",
"Home/Contract/{contract}",
new
{
controller = "Home",
action = "Contract",
contract = UrlParameter.Optional
},
new { contract = @"\w+" }
);
Is it possible to configure this route to receive both controller
Home
(as already configured) and for a new controller
calling Contributor
? Basically an OR within the controller
parameter.