How can I send the entire request in the zend project to my default module controller (without using .access files).
Now it will be application-> IndexController . Instead, I need each request to go to application-> module-> store-> IndexController .
I try this:
public function indexAction()
{
$this->_forward('index','index','store');
}
Its working, but the URL in the web browser http: // localhost / mystore / public / does not change to http: // localhost / mystore / public / store /
Thank,
Yosef
Yosef