我在成功登錄後進入關於頁面。沒關係。登錄成功後,yii2-app-basic中的URL不會更改
但是,URL不會更改爲關於頁面。與登錄頁面相同,但頁面內容爲關於頁面。
SiteController.php
public function actionLogin()
{
if (!\Yii::$app->user->isGuest)
{
return $this->goHome();
}
$model = new LoginForm();
if ($model->load(Yii::$app->request->post()))
{
return $this->render('about'); // Here
}
return $this->render('login', [
'model' => $model,
]);
}
URL是一樣的http://localhost/myProject/yii/web/index.php?r=site%2Flogin
。 它應該是http://localhost/mylawsuit/yii/web/index.php?r=site%2Fabout
那麼,如何在登錄後更改URL?提前致謝。
如果是正確的,請選擇正確答案! – mohsen
嗨,莫森先生,我不能那樣做。因爲@Soju先生回答了第一。但是,我投了你的答案。謝謝回答。 –
確定選擇@Soju作爲其他人的選定成員應答! – mohsen