💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、豆包、星火、月之暗面及文生图、文生视频 广告
##跳转 -- ~~~ namespace app\index\controller; class Index { use \traits\controller\Jump; public function index($name='') { if ('thinkphp' == $name) { $this->success('欢迎使用ThinkPHP 5.0','hello'); } else { $this->error('错误的name','guest'); } } public function hello() { return 'Hello,ThinkPHP!'; } public function guest() { return 'Hello,Guest!'; } } ~~~ ##直接跳转 >[info]redirect方法默认使用302跳转,如不需要可以使用第二个参数进行301跳转。 ~~~ $this->redirect('http://www.baidu.com',301); ~~~