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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.