Is it possible to force Zend_Router to check the defaultController for it's Actions, and skip the controller name in the URL, if the action is in the default controller ?
ie.
/defaultControllerName/action/ -> /action/
/nonDefaultContorller/action/ -> /nonDefaultContorller/action/
If it's impossible what's the convention to handle this situation ?
Static routes can accomplish this but you'd have to add one for each of your actions in the index controller.
So mysite.com/add would go to the index controller add action.