1234567891011121314151617181920 |
- <?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()
- {
- $this->redirect('/h5');
- }
- }
|