1
我是新來的Zend-Framework3。兒童路線不工作
並將我的ZF2應用程序遷移到ZF3。
在這個孩子的路線不工作。
這裏是路由器從我module.config.php
'router' => [
'routes' => [
'application' => [
'type' => Segment::class,
'options' => [
'route' => '/application',
'defaults' => [
'controller' => Controller\IndexController::class,
'action' => 'index',
],
],
'may_terminate' => true,
'child_routes' => [
'kk' => [
'type' => Literal::class,
'options' => [
'route' => 'kk',
'defaults' => [
'controller' => Controller\IndexController::class,
'action' => 'kk'
],
],
],
]
]
],
],
當我打電話/application/kk
行動。它生成404 error
。
我在哪裏錯了?還是我必須手動註冊所有操作?