AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
>[danger] redirect 重定向助手函数 ``` public function index() { return redirect('index/login'); } ``` >[danger] 特别注意: 以上写法无法在基础控制器的初始化方法中跳转 该重定向助手函数在`BaseController.php` 的初始化方法`initialize()`中无法跳转 解决方案 ``` throw new \think\exception\HttpResponseException(redirect('login')); ```