我在 Zend 应用程序中有很多模块。每个模块都会有错误和异常,对吧?所以我在应用程序模块中创建了错误页面,它可以工作。
但是,在其他模块中,它们不能使用错误页面。那么我应该怎么做才能重用错误页面呢?
这是module.config.php
应用程序模块中的文件:
return array(
...,
'controllers' => array(
'invokables' => array(
'Application\Controller\Index' => 'Application\Controller\IndexController'
),
),
'view_manager' => array(
'display_not_found_reason' => true,
'display_exceptions' => true,
'doctype' => 'HTML5',
'not_found_template' => 'error/404',
'exception_template' => 'error/index',
'template_map' => array(
'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
'application/index/index' => __DIR__ . '/../view/application/index/index.phtml',
'error/404' => __DIR__ . '/../view/error/404.phtml',
'error/index' => __DIR__ . '/../view/error/index.phtml',
),
'template_path_stack' => array(
__DIR__ . '/../view',
),
),
);
当我使用以下代码手动返回 HTTP 404 响应时,会出现问题:
if ( $information == null ) {
$response = $this->getResponse();
$response->setStatusCode(404);
return $response;
}
但是,当我访问像http://example.com/something-do-not-exist这样的非法资源时。我将进入 404 错误页面,但有异常The requested URL could not be matched by routing.