0

Admin と Application の 2 つのモジュールがあります。モジュール アプリケーションでは、module.config.php に次のルートがあります。

'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'
            )
    )
),

マッチングしてるのが問題

example.com/admin

そして一致していません

example.com/admin/

どうすれば修正できますか?

4

2 に答える 2

3

挿入[/]して固定します。試す:

'route' => '/admin[/:controller[/:action]][/]',
于 2013-12-06T06:16:12.110 に答える
0

/ のみに一致するオプションの子ルートを追加できます。これは、ワイルドカード (サブ) ルートを使用した同じ問題に対しても機能するはずです。

'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'
            'may_terminate' => true,
            'child_routes' => array(
                'ts' => array(
                    'type' => 'literal',
                    'options' => array('route' => '/' )
                ),
            )
        ),
        'ts' => array(
                'type' => 'literal',
                'options' => array('route' => '/')
        ),
    )
),
于 2013-12-06T16:02:11.140 に答える