I have a route of the form: /{parent}/{child}/ which I pass to the CategoryController. However, if the {parent} category does not exist, I want to just continue the routing lookup. For example, if that /post/1 was received, and the CategoryController cannot find a category called "post" it will automatically pass it off the the PostController (which is the default behavior). Is there a good way to accomplish this?
Looking forward to this framework.