EmptyController.class.php 205 B

123456789101112
  1. <?php
  2. namespace Home\Controller;
  3. use Think\Controller;
  4. class EmptyController extends Controller
  5. {
  6. public function _empty() {
  7. header("Location:" . U('/', '', true, true));
  8. die;
  9. }
  10. }