trq Posted May 18, 2009 Share Posted May 18, 2009 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? Link to comment https://forums.phpfreaks.com/topic/158547-unexpected-routing-results-zend/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.