我创建了一个模块,它是 ZF2 文档中给出的专辑示例的基本副本,但是,使用新模块,我根本无法访问它 - 我总是收到 404 错误。我正在 ZF2 骨架上构建它。
我已经加载了三个模块:应用程序、前端和安全性。
Frontend 和 Security 是彼此重复的,但是,我已经彻底检查过并且没有引用旧代码(因为我确实复制了模块文件夹并重命名/重写了引用)。
该模块也加载在 application.config.php 中。
关于我所缺少的任何想法?
模块配置:
return array(
'controllers' => array(
'invokables' => array(
'Security\Controller\Security' => 'Security\Controller\SecurityController',
),
),
'router' => array(
'routes' => array(
'security' => array(
'type' => 'segment',
'options' => array(
'route' => '/security[/:action][/:id]',
'constraints' => array(
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
'id' => '[0-9]+',
),
'defaults' => array(
'controller' => 'Security\Controller\Security',
'action' => 'index',
),
),
),
),
),
'view_manager' => array(
'template_path_stack' => array(
'security' => __DIR__ . '/../view',
),
),
);