I have a problem in my current Zend Framework application.
In my Bootstrap I register these routes:
protected function _initRouter()
{
$this->
I see here two solutions:
You can set a default value for your route parameters in the _initRouter(), but it may be not what you want (eg. in this case this route may be used when you do not want)
You can specify the route parameters in the navigation.xml (the params property). If you don't want to set them fixed, you will need to write PHP code for the generation of the navigation xml.