2025-05-28 17:30:59 +08:00

21 lines
320 B
PHP

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