0

我在 YII 中遇到了这个问题一旦你登录你就会被重定向到 index.php,但是如果你去 http://staging.xxxxxxxx.com/

如果没有 index.php,它会再次显示登录表单。

我不知道该怎么做才能让它在登录时进入 index.php.. 我希望有人能帮助我.. 我对 yii 真的很陌生

4

1 回答 1

1

您可以使用以下代码检查用户是否登录:

if(Yii::app()->user->isGuest){ // not logged in 

    $this->redirect(array('controller/action')); /// redirect to target page 
}
else{
   $this->redirect(array('controller/action')); /// redirect to target page 
}
于 2013-06-02T13:21:47.893 回答