Re: [fw-general] A single Controller for all requests

2007-01-29 Thread Dmity Sinev
an then manipulate prior to rendering. If you do this, you can't use run(), but must use dispatch() instead. Dmity Sinev schrieb: Hi! You can do this by defining your own route for example like this: $router = new Zend_Controller_RewriteRouter(); $router->addRoute( '

Re: [fw-general] A single Controller for all requests

2007-01-29 Thread Dmity Sinev
Hi! You can do this by defining your own route for example like this: $router = new Zend_Controller_RewriteRouter(); $router->addRoute( 'default', new Zend_Controller_Router_Route(':action/:subnavi/', array ('controller' => 'YourDefaultController' , 'action' => 'YourDefaultAction',