mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 05:52:43 +08:00
13 lines
189 B
PHP
13 lines
189 B
PHP
<?php
|
|
|
|
namespace app\index\controller;
|
|
|
|
use think\admin\Controller;
|
|
|
|
class Index extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
$this->redirect(url('@admin/login'));
|
|
}
|
|
} |