404頁面即系統在找不到請求的操作方法和找不到請求的控制器名稱時的一種報錯行為的優化。
在很多網站中都會有使用404頁面的時候,在ThinkPHP框架中該如何設置呢,接下來我介紹其中一種方法,具體內容如下
第一步:在thinkphp框架中的Home/Comtroller中建一個EmptyController.class.php,其代碼如下:
<?php namespace HomeController; use ThinkController; class EmptyController extends Controller{ //空操作_empty()方法 function _empty(){ header("HTTP/1.0 404 Not Found"); $this -> display("Public:404"); } function index(){ header("HTTP/1.0 404 Not Found"); $this -> dislay("Public:404"); } } ?>
注意:其中 header("HTTP/1.0 404 Not Found")是定義此狀態碼未404。
第二步:在thinkphp框架中的Home/Comtroller中建一個公共的類PublicController.class.php,其代碼如下:
<?php namespace HomeController; use ThinkController; class PublicController extends Controller{ function _empty(){ header("Location:/bbs/thinkphp/404.html"); } } ?>
注意:其中 header("Location:/bbs/thinkphp/404.html")中的/bbs/thinkphp/404.html是你出現404後頁面跳轉的地址,需和自己的404.html頁面放置位對應。
第三步:讓其他控制器全部繼承 第二步中的PublicController.class.php,比如:
<?php namespace HomeController; // use ThinkController; class IndexController extends PublicController { public function index(){ * * * } } ?>
注意:將use ThinkController;注釋掉
以上就是thinkphp 404頁面設置的全部內容,希望對大家學習php程序設計有所幫助。