私は得ています:
404 エラーが発生しました
ページが見つかりません。要求された URL はルーティングによって一致しませんでした。
私のmodule.config.php
ファイルは次のとおりです。
'router' => array(
'router' => array(
'Test' => array(
'type' => 'Segment',
'options' => array(
//http://localhost/Test/Test
'route' => '/Test[/[:action]]',
'constraints' => array(
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
),
'defaults' => array(
'controller' => 'Test\Controller\Test',
'action' => 'Test'
),
),
),
),
),
助けてください、私は Zend Framework 2 の初心者です!