Revision #78 was created by rackycz on Sep 20, 2019, 3:21:43 PM.
edit
Content
[...]
}
return $this->redirect(['site/index']);
}
```
As you can see when the language is changed, redirection to site/index happens. Also mind that we are not modifying the attribute from config/web.php using Yii::$app->language, but we are saving the value into the session. The reason is that PHP deletes memory after every click, only session is kept. We then can use the value in other controllers and views like this: