私の中に次のルートがありますmodule.config.php
:
'routes' => array(
'admin' => array(
'type' => 'Segment',
'options' => array(
'route' => '/admin[/:controller[/:action]][/]',
'constraints' => array(
'controller' => '[a-zA-Z][a-zA-Z0-9_-]+',
'action' => '[a-zA-Z][a-zA-Z0-9_-]+',
),
'defaults' => array(
'__NAMESPACE__' => 'Admin\Controller',
'module' => 'Admin',
'controller' => 'Index',
'action' => 'index',
),
),
'may_terminate' => true,
'child_routes' => array(
'wildcard' => array(
'type' => 'Wildcard',
)
),
'priority' => 1000
),
),
[/]
ルートの最後にある理由は次の質問にあります: Zend Framework 2 Segment Route matching 'test' but not 'test/'
このルートはZF1のようにしたいです。私はそれを渡したい$_GET parameters
(のように/id/1/test/2/
)。
このルートが実際には一致しているが一致/admin/customer/edit//id/20
していないという問題/admin/customer/edit/id/20
何か案は?