chaoyu/app/controller/manager/Index.php

12 lines
188 B
PHP
Executable File

<?php
namespace app\controller\manager;
class Index extends Base
{
//后台首页
public function index()
{
return $this->redirect(url('manager.safe/index'));
}
}