1
ZF3을 사용하고 있으며 오류 페이지의 레이아웃을 변경해야합니다. 그들은 응용 프로그램 modules.config
파일에 다음과 같은 구성에 의해 호출됩니다modules.config에서 구성된 오류 페이지의 레이아웃을 변경하는 방법은 무엇입니까?
'view_manager' => [
'display_not_found_reason' => true,
'display_exceptions' => true,
'doctype' => 'HTML5',
'not_found_template' => 'error/404',
'exception_template' => 'error/index',
'template_map' => [
'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' => [
__DIR__ . '/../view',
],
],
가 어떻게 404.phtml
및 index.phtml
페이지에 특정 레이아웃을 설정할 수 있습니까? 당신이 특정 작업에 대한 특정 레이아웃을 원하는 경우