Yii的。从模块BeforeControllerAction重定向

时间:2014-09-20 13:23:16

标签: redirect yii module

如果在模块中加载任何控制器时一组条件不匹配,我想将用户重定向到备用路由。

我收到以下错误:

AccessModule and its behaviors do not have a method or closure named "redirect".

我该怎么做呢?

2 个答案:

答案 0 :(得分:0)

您可能使用$this->redirect。你可以这样做:

Yii::app()->request->redirect('URL');

答案 1 :(得分:0)

你可以试试这个:

$this->owner->redirect(array("site/index"));