123456789101112131415161718192021 |
- <?php
- namespace app\index\controller;
- //use app\common\controller\Frontend;
- use think\Controller;
- class Index extends Controller
- {
- protected $noNeedLogin = '*';
- protected $noNeedRight = '*';
- protected $layout = '';
- public function index()
- {
- exit;
- // $this->redirect('/h5');
- }
- }
|