i found the answer by myself. it should like the following:
PHP Code:
/* added by cheyo 2008-06-06 above */
$router = $frontController->getRouter(); // returns a rewrite router by default
$route = new Zend_Controller_Router_Route_Regex(
'([^/]+)/([^/]+)/(\d+)',
null, /* this line could be: array('module' => 'default') */
array(
1 => 'controller',
2 => 'action',
3 => 'id'
)
);
$router->addRoute('archive', $route);
/* added by cheyo 2008-06-06 end */