登录成功后,网址在yii2-app-basic中不会更改

Nan*_*kar 5 php url-routing yii2 yii2-basic-app

成功登录后我去了About Page.没关系.

但是,URL不会更改为About Page.它与登录页面相同,但页面内容为"关于页面".

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,
    ]);
}
Run Code Online (Sandbox Code Playgroud)

网址与http://localhost/myProject/yii/web/index.php?r=site%2Flogin.相同.它应该是http://localhost/mylawsuit/yii/web/index.php?r=site%2Fabout

那么,登录后如何更改URL.提前致谢.

soj*_*oju 6

about您应该只使用重定向,而不是渲染视图:

return $this->redirect(['about']);
Run Code Online (Sandbox Code Playgroud)