ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的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); ~~~