💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、豆包、星火、月之暗面及文生图、文生视频 广告
>[danger] redirect 重定向助手函数 ``` public function index() { return redirect('index/login'); } ``` >[danger] 特别注意: 以上写法无法在基础控制器的初始化方法中跳转 该重定向助手函数在`BaseController.php` 的初始化方法`initialize()`中无法跳转 解决方案 ``` throw new \think\exception\HttpResponseException(redirect('login')); ```