Подскажите, по какой причине не работает такой роут
$router->add('/admin/:controller/:action/:id', [
'module' => 'backend',
'controller' => 1,
'action' => 2,
'id' => 3,
]);
но работает вот такой:
$router->add('/admin/:controller/:action/{id:[0-9]+}', [
'module' => 'backend',
'controller' => 1,
'action' => 2,
'id' => 3,
]);
Tell me, why this route is not working:
$router->add('/admin/:controller/:action/:id', [
'module' => 'backend',
'controller' => 1,
'action' => 2,
'id' => 3,
]);
But this is working fine:
$router->add('/admin/:controller/:action/{id:[0-9]+}', [
'module' => 'backend',
'controller' => 1,
'action' => 2,
'id' => 3,
]);