Hi,
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