Currently I'm creating a controller (ZendFramework) that gets from database an URL string by given id.
/linker/show/id/6
I.e. id=6 /products/list/type/games.
In LinkerController I would use _forward() method to pass also optional params (POST, GET), but this method takes parameters such like ($action, $controller, $module, $params) and my string /products/list/type/games right now is not valid.
I also do not want to redirect to this URL (user should not see that he is in ProductController).
Any ideas how to solve it ?