Hi all:
I have following custom route:
$router = $frontController->getRouter();
$browseRoute = new Zend_Controller_Router_Route(
'/:action/:detailPage/*', // URL to match; action and id will
be matched
array(
'module' => 'default', // 'default' module
'controller' => 'browse',
'detailPage' => 'index'
)
);
$router->addRoute('browse', $browseRoute);
All requests that have an existing controller (e.g. <base url>/admin or
<base url>/admin/index or <base url>/admin/index or <base
url>/admin/list/view/test etc.) should use the default route.
Any suggestions on how to solve this problem?
TIA
Gunter