yii重定向403

时间:2016-02-04 07:22:48

标签: php yii google-webmaster-tools

我使用Yii 1.1.17,在我的行动中我有

$this->redirect(url('sell/default/index'), true, 403);

我得到的只是一个空白的白页。即使在日志中也没有错误。但这有效

$this->redirect(url('sell/default/index'));

问题是我想设置403错误,因此我不会在Google上收到软404错误。

我也试过了this,但我仍然得到了同样的结果。

有什么想法吗?

2 个答案:

答案 0 :(得分:0)

如果你抛出异常怎么办......!

  throw new CHttpException(403,'Your Error message');

答案 1 :(得分:0)

  throw new HttpException(403, Yii::t('app', 'You are not allowed to perform this action.'));