I have a wild card route, but at the same time I want to check for the existance of a page number at the end of the url.
so my url might look like:
www.example.com/category/parentcat/childcat/234
where 234 is the page number.
the route currently looks like:
new Route("category/{*category}
Since its a wild card route, I can't put the page number at the end of the route definition.
What is the best way to handle this?