I have a route manually defined in my Bootstrap
$route = new Zend_Controller_Router_Route (
'api/v1/:action',
array('controller' => 'api-v1'));
$router->addRoute('api-v1', $route);
It used to work but now I get the custom 404 page not found.
Other routes, either manually or dynamically, work.
The controller/action exists (if I call directly the api-v1 in the browser
it gives the result).
Any ideas on where can I debug?
Ex.
foo.com/api-v1/login works foo.com/api/v1/login does not
