Re: [fw-general] router question - how to hide default module, controller and action in url?

2008-01-21 Thread zfuser
ok now I created: $router->addRoute( 'url', new Zend_Controller_Router_Route(':lang/:module/:category/:controller/:action/:test', array('module'=>'default', 'controller' => 'index', 'action' => 'index', 'lang' => 'en', 'category'=> 'categ1', 'test'=>'somevalue')) ); but the

Re: [fw-general] router question - how to hide default module, controller and action in url?

2008-01-18 Thread MichaƂ Minicki
zfuser wrote: I created router $router = $frontController->getRouter(); $router->addRoute( 'url', new Zend_Controller_Router_Route(':lang/:module/:category/:controller/:action/:test', array('module'=>'default', 'controller' => 'index', 'action' => 'index', 'lang' => 'en', 'category

[fw-general] router question - how to hide default module, controller and action in url?

2008-01-18 Thread zfuser
I created router $router = $frontController->getRouter(); $router->addRoute( 'url', new Zend_Controller_Router_Route(':lang/:module/:category/:controller/:action/:test', array('module'=>'default', 'controller' => 'index', 'action' => 'index', 'lang' => 'en', 'category'=> 'categ1')) )