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.