Files
cunkebao_v3/Server/application/frontend/controller/IndexController.php
2025-03-12 12:18:06 +08:00

16 lines
245 B
PHP
Executable File

<?php
namespace app\frontend\controller;
use think\Controller;
class IndexController extends Controller {
/**
* 跳转至后台登录页
*
*/
public function index() {
return $this->redirect('/admin/');
}
}