今天一个同学问我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("
没有{$_GET["a"]}这个操作!");
这一行的上面或者下面添加:
OK,完毕!
有问题上微博:
原文地址:
阅读(230) | 评论(0) | 转发(0) |