Is it posible to have same router with different controller and action?
example
$router->add('/:params', array(
'module' => 'frontend',
'controller' => 'center',
'action' => 'page',
'params' => 1,
));
$router->add('/:params', array(
'module' => 'frontend',
'controller' => 'page',
'action' => 'view',
'params' => 1,
));