bueno esto se hace agregando un nuevo route
en tu bootstrap deberias tener algo asi
Código PHP:
Ver originalprotected function _initRouters() {
if (!$this->hasResource('frontcontroller')) {
$this->bootstrap('frontcontroller');
}
$fc = $this->getResource('frontcontroller');
$fc->getRouter()->addRoute(
'miRouter',
new Zend_Controller_Router_Route(
':controller/:action/:id',
'controller' => 'index',
'action' => 'index',
'id' => 0,
)
)
);
}
de estar forma tienes tu propia reescritura de url
ahora si quieres utilizarlo por defecto directamente le pones 'default' en vez de 'mirouter' y asi redefinis el router por defecto
espero te sirva la ayuda