yii2-user をインストールしました。ログイン ビューでは、フォームの下部にいくつかのリンクがあります。
<?= Html::a(Yii::t('user', 'Didn\'t receive confirmation message?'), ['/user/registration/resend']) ?>
と
<?= Html::a(Yii::t('user', 'Didn\'t receive confirmation message?'), ['/user/registration/resend']) ?>
これらのリンクのいずれかをクリックすると、URL の登録部分が取り出されます。そのため、見つからないページが残っています。それは私を送ります
http://localhost/webs/parlay/web/index.php/user/resend
私を送る代わりに
http://localhost/webs/parlay/web/index.php/user/registration/resend
ここに私の urlManager 設定があります。
'urlManager' => [
'class' => 'yii\web\UrlManager',
// Disable index.php
'showScriptName' => true,
// Disable r= routes
'enablePrettyUrl' => true,
'rules' => array(
'<controller:\w+>/<id:\d+>' => '<controller>/view',
'<controller:\w+>/<action:\w+>/<id:\d+>' => '<controller>/<action>',
'<controller:\w+>/<action:\w+>' => '<controller>/<action>',
),
],