When it comes to setting up routes like this, I use a config file. As a preference, I use XML to store my config data, however these could just as easily be stored in another supported format. I then add the routes from the config, to the router in my bootstrap.
Config:
<config>
<routes>
<shortcutone type="Zend_Controller_Router_Route">
<route>:module/:id</route>
<defaults>
<controller>index</controller>
<action>index</action>
</defaults>
<reqs id="\d+">
</shortcutone>
<shortcuttwo type="Zend_Controller_Router_Route">
<route>:module/:controller/:id</route>
<defaults>
<controller>index</controller>
</defaults>
<reqs id="\d+">
</shortcuttwo>
<shortcutthree type="Zend_Controller_Router_Route">
<route>:module/:controller/:action/:id</route>
<defaults>
<controller>index</controller>
<action>index</action>
</defaults>
<reqs id="\d+">
</shortcutthree>
</routes>
</config>
Bootstrap
$config = new Zend_Config_Xml('config.xml');
$router = Zend_Controller_Front::getInstance()->getRouter();
$router->addConfig($config, 'routes');
Obviously, there are better other options , and I'd encourage you to read the documentation on this, however, this fits for your example.
