Files
cunkebao_v3/Server/application/frontend/controller/IndexController.php

16 lines
245 B
PHP
Raw Normal View History

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