我正在学习ZF2,我正在构建一个网站,以确保我理解ZF2的新概念,但我想知道是否有办法为应用程序模块中的错误页面指定模板
由于
答案 0 :(得分:1)
module.config.php
中有一些预先设置的配置选项,如:
...
'view_manager' => array(
'not_found_template' => 'error/404',
'exception_template' => 'error/exception',
'template_map' => array(
'error/404' => __DIR__ . '/../view/error/404.phtml',
'error/exception' => __DIR__ . '/../view/error/exception.phtml',
),
),
...
创建文件夹和文件后,你应该好好去。