Skip to content

How to redirect to previous URL in YII

Last updated on December 2, 2022

If you want to get the previous URL use the below line of code

echo Yii::app()->request->urlReferrer;

If you want to redirect to the previous URL use the below line of code

$this->redirect(Yii::app()->request->urlReferrer);

That’s it happy coding

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Inline Feedbacks
View all comments