Zend Framework Router anlatmak için herhangi bir yolu var:
- " if www.domain.com/test " is called forward to indexController - forwardAction and recieve the parameter.
- " if www.domain.com" is called show indexController / indexAction
?
Lütfen önyükleme dosyasının içine bu fonksiyonu ayarlayın ya da Rutes saklamak yerde:
protected function _initRouter()
{
$this->bootstrap('frontController');
$front = $this->getResource('frontController');
$router = $front->getRouter();
$router->addRoute('testToForward',
new Zend_Controller_Router_Route(
':parameter',
array(
'controller' => 'index',
'action' => 'forward',
}
Edit: This way the passed parameter will be passed as 'parameter' to the forward controller. The second route is provided by default.