Yii2的beforeAction中如何进行重定向?

已邀请:

zkbhj - 凯冰科技站长

赞同来自:

不跳转代码:
return $this->redirect('http://www.yiichina.com/');

跳转代码:
return $this->redirect('http://www.yiichina.com/')->send();

或者:
$this->redirect('http://www.yiichina.com/')
return false;

要回复问题请先登录注册