今天一個同學問我brophp怎麼設置404,這裡分享一下方法
1,自己准備一個404頁面的模板,放在根目錄的public下面,當然路徑你可以自己定義。
2,首先在action.class.php中添加這麼一個方法:
static public function _404(){
header("HTTP/1.0 404 Not Found");
header("status: 404 Not Found");
$my = new self();
$my->display('public/404');
}
3,在brophp/brophp.php中找到 $srccontrolerfile = APP_PATH."controls/".strtolower($_GET["m"]).".class.php";後面添加下面的代碼:
if(!file_exists($srccontrolerfile)){
Action::_404();
}
4,然後打開action.class.php,找到Debug::addmsg("<font color='red'>沒有{$_GET["a"]}這個操作!</font>");
這一行的上面或者下面添加:
self::_404();
OK,完畢!