Author Topic: Unexpected routing results (Zend)  (Read 558 times)

0 Members and 1 Guest are viewing this topic.

Offline thorpeTopic starter

  • Administrator
  • 'Mind Boggling!'
  • *
  • Posts: 29,255
    • View Profile
Unexpected routing results (Zend)
« on: May 18, 2009, 01:36:47 AM »
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?