企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
##跳转 -- ~~~ 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); ~~~