View Single Post
  #3 (permalink)  
Old 03-27-2007, 07:59 AM
Cristian's Avatar
Cristian Cristian is offline
Administrator
 
Join Date: Feb 2007
Location: Sibiu, Romania
Posts: 101
Default

You mean a implementation of:

Zend_Controller_Router_Route_Interface ?

I was able to partially solve problem by adding:

//added...
$router = $frontController->getRouter(); // returns a rewrite router by default
$router->removeDefaultRoutes();

$router->addRoute(
'user',
new Zend_Controller_Router_Route(':anytext_:controller _:action')
);

Format is still not what i wanted but anyway... More closer...
Reply With Quote