I am working with MVC4 and looking to write a route but unsure how do so.
On my site I have a number of routes. What I want to achieve is as follows:
- Any url that corresponds to route, the controller action for that route is fired
- But if no controller action is found for a url, I want a particular controller action to be fired eg. www.mywebsite.com/level1/level2/level3 has no corresponding route, so I want to call a particular route and pass to it level1, level2 and level3 in a list of strings as an argument of the controller action. There is no restriction to the number of items.
With this information I will do a check if the data exists in a content management system etc.
Any ideas how I might create a route for the above?
