Jump to content

Unexpected routing results (Zend)


trq

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.