MyError.php 337 B

123456789101112131415
  1. <?php
  2. namespace app\index\controller;
  3. use think\Request;
  4. class MyError
  5. {
  6. public function _empty()
  7. {
  8. header("HTTP/1.0 404 Not Found");
  9. echo '<script>setTimeout(function (){location.href="'.MAC_PATH.'";},'.(2000).');</script>';
  10. $msg = lang('page_not_found');
  11. abort(404,$msg);
  12. exit;
  13. }
  14. }