EmptyController.class.php 203 B

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