21 lines
321 B
PHP
21 lines
321 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('/web');
|
||
|
// return $this->view->fetch();
|
||
|
}
|
||
|
|
||
|
}
|