I defined a route:
$di['router']->add('#^/([a-zA-Z0-9\_\-]+)/([0-9]+)#', array(
'controller' => 1,
'action' => 'index',
'params' => 2
));
my controller
public function indexAction($id = 0)
{...}
my url
https://example.org/forum/1234
I expect that "1234" will be catched, but I catched "234". Why ?