Index.php 323 B

123456789101112131415161718192021
  1. <?php
  2. namespace app\index\controller;
  3. //use app\common\controller\Frontend;
  4. use think\Controller;
  5. class Index extends Controller
  6. {
  7. protected $noNeedLogin = '*';
  8. protected $noNeedRight = '*';
  9. protected $layout = '';
  10. public function index()
  11. {
  12. exit;
  13. // $this->redirect('/h5');
  14. }
  15. }