When joining the virtual host route on my computer dev-website.com/admin I have no problems but when I want to go to the web server displays the following message website.com/admin
Dispatcher has detected a cyclic routing stability Causing problems
# 0 [internal function]: Phalcon\Mvc\Dispatcher->_throwDispatchException('Dispatcher has ...', 1)
# 1 [internal function]: Phalcon\dispatcher->dispatch ()
No. 2 /var/www/html/avinka.com/public/index.php(33): Phalcon\Mvc\application-> handle ()
# 3 {main}
#routes.php
$router = new Phalcon\Mvc\Router();
$router->add('/:controller/:action/:params', array(
'namespace' => 'Project\Controllers',
'controller' => 1,
'action' => 2,
'params' => 3,
));
$router->add('/:controller', array(
'namespace' => 'Project\Controllers',
'controller' => 1
));
$router->add('/admin/:controller/:action/:params', array(
'namespace' => 'Project\Controllers\Admin',
'controller' => 1,
'action' => 2,
'params' => 3,
));
$router->add('/admin/:controller', array(
'namespace' => 'Project\Controllers\Admin',
'controller' => 1
));
$router->add('/admin', array(
'namespace' => 'Project\Controllers\Admin',
'controller' => 'index'
));
what is the possible problem?