我已经配置了这两条路线
$app->match ( '/controller/param/{country}/{q}', "demo.controller:demoAction" )->value ( 'country', 'de' )->value('q', '')->bind ( 'demo_action_with_country' );
$app->match ( '/controller/param/{q}', "demo.controller:demoAction" )->value ( 'q', '' )->bind ( 'demo_action_without_country' );
但是 - 这不起作用。如果我调用/controller/param/Test-String
路由匹配并返回内容。如果我打电话,/controller/param/DE/Test-String
我会得到NotFoundHttpException
我该如何解决这个问题?