Files
EasyAdmin8/route/app.php
wolfcode d429e82dde update .
2023-08-07 20:15:24 +08:00

16 lines
737 B
PHP

<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
use think\facade\Env;
use think\facade\Route;
Route::any('/', function () {
return redirect('/' . Env::get('EASYADMIN.ADMIN', false));
});