Its fairly straight forward, I started out with the rewriterouter.
PHP Code:
/**
* Instantiate router object
*/
$router = new Zend_Controller_RewriteRouter(array(
'useModules' => true
));
Basically now, by default, links are changed to be
http://mysite.com/module/controller/action
or
http://mysite.com/?module=mymodule&c...ction=myaction
The document explaining this is here
Zend Framework
I'm not sure what your problem is from the information you provided, but if you can post more on your problem, I'll know what to help you with.
