Http.php 388 B

12345678910111213141516171819
  1. <?php
  2. namespace app\index\exception;
  3. use Exception;
  4. use think\exception\Handle;
  5. class Http extends Handle
  6. {
  7. public function render(\Exception $e){
  8. if(config('app_debug')){
  9. //如果开启debug则正常报错
  10. return parent::render($e);
  11. }else{
  12. //404页面 自行定义
  13. header("Location:".url('/404'));
  14. }
  15. }
  16. }