i have a blog with a routing. In my ini it seems like this:
routes.quote.route = :id
routes.quote.defaults.module = default
routes.quote.defaults.controller = posts
routes.quote.defaults.action = single
routes.quote.reqs.id = \d+
Now i want to have a page parameter (for comments) additionally. I only got it by creating a sectond route like this:
routes.quotePage.route = :id/page/:page
routes.quotePage.defaults.module = default
routes.quotePage.defaults.controller = posts
routes.quotePage.defaults.action = single
routes.quotePage.reqs.id = \d+
routes.quotePage.reqs.page = \d+
I want to combine these two into one. How can i do this? the page-parameter should only be additional.
Thank You