How I can send all request in zend project to my default module controller (without use .access files).

Now it going to application->IndexController, Instead I need that every request will go to application->module->store->IndexController.

I try this:

public function indexAction()
{
       $this->_forward('index','index','store');
}

Its works, but url in web browser http://localhost/mystore/public/ not change to http://localhost/mystore/public/store/

Thanks,

Yosef

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Try this:

public function indexAction()
{
    $this->_redirect('index','index','store');
}

Looking forward, probably the controller plugin handling automatically all the redirects will be better.

link|improve this answer
thanks, Its works with little change: $this->_redirect('store'); – Yosef Jun 11 '10 at 12:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.