评论

收藏

[PHP] ThinkPHP3.2.3框架实现的空模块、空控制器、空操作,跳转到错误404页面图文详解

开发技术 开发技术 发布于:2021-08-21 13:23 | 阅读数:548 | 评论:0

本文实例讲述了thinkphp3.2.3框架实现的空模块、空控制器、空操作,跳转到错误404页面。分享给大家供大家参考,具体如下:
【演示准备】
首先下载了一个thinkphp3.2.3,目录结构如下:(只有home模块、index控制器、index操作方法)
DSC0000.png

然后找了一个简易的错误404页面404.html放到了根目录:
DSC0001.png

【空模块】
访问一个不存在的模块admin,错误提示:
DSC0002.png

修改根目录下 thinkphp/library/think/dispatcher.class.php 178行代码:
// e(l('_module_not_exist_').':'.module_name);
header("location: /404.html");
exit();
再次访问空模块:
DSC0003.jpg

【空控制器】
访问home模块不存在的控制器user,错误提示:
DSC0004.jpg

查看根目录下 thinkphp/library/think/app.class.php 101行前后代码:
DSC0005.jpg

通常的处理方法是:在当前模块下新建一个empty控制器,在里面做404跳转(a方法实例化empty控制器)。
emptycontroller.class.php:
<?php
namespace home\controller;
use think\controller;
class emptycontroller extends controller {
  public function index() {
  header("location:/404.html");
  exit();
  }
}
再次访问空控制器:
DSC0006.jpg

【空操作】
访问home模块下index控制器不存在的test操作方法,错误提示:
DSC0007.jpg

查看根目录下 thinkphp/library/think/controller.class.php 170行前后代码:
DSC0008.jpg

通常的处理方法是:在当前模块下新建一个public控制器(继承controller),在里面定义_empty方法跳转404页面, 然后其他控制器再继承public。
publiccontroller.class.php:
<?php
namespace home\controller;
use think\controller;
class publiccontroller extends controller {
  public function _empty() {
  header("location:/404.html");
  exit();
  }
}
index控制器继承puclic:
DSC0009.jpg

再次访问空操作方法:
DSC00010.jpg

希望本文所述对大家基于thinkphp框架的php程序设计有所帮助。
原文链接:https://blog.csdn.net/msllws/article/details/82932615

关注下面的标签,发现更多相似文章