I am trying to figure out how i can create a route configuration so that all URLS will goto the same VIEW (Page).
CUrrently of course if i do for example
/Products/Id
Then this would look in the Products controller.
I would like to always goto my MainController and the same action no matter what the URL is
Is this possible?
Thanks in advance
This is possible to be done with a
catchAllroute:Alternatively you could have your default route and put the catchAll route after it so that if no other route is matched, the catchAll route will get it