Redirecting to a different controller and action

Hi All,

Have just started to learn Yii. How can I redirect a request to different controller and action using a redirect function?

Assume the controller is branches and the action is view

http://www.yiiframework.com/forum/index.php?/topic/10263-how-to-redirect/page__p__50427__hl__redirect#entry50427

Just use this in your controller

$this->redirect(array(‘your controller/your action’));

1 Like