나는 mdskinner 덕분에 how-to-setup-a-custom-404-page-for-a-kohana-v3-app의 솔루션을 사용했습니다. 따라서 작업 코드는 다음과 같습니다.Kohana3의 404 사용자 정의 페이지를 동적으로로드하는 방법은 무엇입니까?
Kohana_Exception::$error_view = 'kohana/404';//bootstrap.php
and the view file path is system/views/kohana/404.php
불행히도 404 페이지는 정적 페이지입니다. 하지만 컨트롤러와 뷰를 사용하여 다른 페이지와 마찬가지로 동적으로 바닥 글을 동적으로로드하려고합니다. 404 사용자 정의 페이지에서 가능합니까?
같은 요청을 실행하고 에코 사이 try/catch 블록을 넣어? 참조 : http://meta.stackexchange.com/questions/8231/are-answers-that-just-contain-links-where other-really-good-answers –