21 lines
320 B
PHP
Raw Normal View History

2025-05-26 16:02:00 +08:00
<?php
namespace app\index\controller;
use app\common\controller\Frontend;
class Index extends Frontend
{
protected $noNeedLogin = '*';
protected $noNeedRight = '*';
protected $layout = '';
public function index()
{
2025-05-28 17:30:59 +08:00
$this->redirect('/h5');
// return $this->view->fetch();
2025-05-26 16:02:00 +08:00
}
}