I have one simple router rule defined....
$router->addRoute(
'user',
new Zend_Controller_Router_Route(
'user/:cmd', array
(
'module' => 'default',
'controller' => 'user',
'action' => 'index',
'cmd' => ''
)
)
);
The objective here is to have all requests to /user/foo directed to the user controller with the param cmd to contain foo.
This is working (kind of). Firstly, to get it to work I had to give cmd a default (see above), secondly, once I have clicked one of my links (eg; /user/add, /user/del) all links on my site suddenly point to /user.
The reason I would like to use the one index for all actions is because I want to reuse my form which is within the index view.
Any ideas? Would more code help?