Hello,
i have tried to create a simple custom route, but it is not working. I want to override /about into /ueber-uns. Phalcon version 3.0 and PHP 7.0.8
Controller: About Action: index
$router = new Phalcon\Mvc\Router();
$router->add('/ueber-uns', [
'controller' => 'about_control',
'action' => 'index'
]);
return $router;
Rgds Stefan