I want to know if is possible using $this->redirect()
statement ,to redirect to a different controller but without showing the action , I mean, if i want to redirect to controller Person by default yii goes to Person/index
, I want to redirect to Person
(don't want to show the action Person == Person/index)
I know that with $this->redirect()
I can use $this->redirect(array(controller/action))
, but is always showing the index action.