设置网站的错误提示页面,也是一个很重要的环节. 一.空操作 在当前控制器里面增加E_empty操作 public function _empty(){ $this->error('方法不存在'); } Public function index(){ } 测试方法: 正常: http://localhost/thinkphp/index/index/index 错误: 会提示“方法不存在” http://localhost/thinkphp/index/index/df 二.空控制器 在模块下建…