跳转出现错误?
class HelloController extends  Controller
{
    public function actionIndex()
    {
        $res=\Yii::$app->response;
        //页面跳转
        //$res->headers->add('location','http://www.baidu.com');
        //或者
        $this->redirect('http://www.baidu.com',301);
    }
}浏览器访问报错:
Calling unknown method: app\controllers\HelloController::redirect()

 
                             
                             这个里面是redirect的几种用法,你看看,再对比下你自己所用的方法,其实你把里面的那个 ,301 去掉应该就可以了
这个里面是redirect的几种用法,你看看,再对比下你自己所用的方法,其实你把里面的那个 ,301 去掉应该就可以了