404页面即系统在找不到请求的操作方法和找不到请求的控制器名称时的一种报错行为的优化。
第一步:在thinkphp框架中的Home/Comtroller中建一个EmptyController.class.php,其代码如下:
<?php namespace Home\Controller; use Think\Controller; 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 Home\Controller;
use Think\Controller;
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 Home\Controller;
// use Think\Controller;
class IndexController extends PublicController {
public function index(){
*
*
*
}
}
?>
注意:将use Think\Controller;注释掉
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。