##跳转
--
~~~
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);
~~~