🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
* [ ] 发送`Http`跳转 ``` Response::redirect($Url, $Code = 302); ``` Key(string):跳转的新地址,作为`Location`头进行发送 Code (int):状态码【默认为`302`临时跳转,传入`301`表示永久跳转】 ***** ``` Response::redirect("http://www.baidu.com/",301); ```