ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
>[danger] redirect 重定向助手函数 ``` public function index() { return redirect('index/login'); } ``` >[danger] 特别注意: 以上写法无法在基础控制器的初始化方法中跳转 该重定向助手函数在`BaseController.php` 的初始化方法`initialize()`中无法跳转 解决方案 ``` throw new \think\exception\HttpResponseException(redirect('login')); ```