0

バックエンド yii2 にアクセスしたいときは、常にフロントエンドにリダイレクトされます。例: フロントエンドとバックエンドに yii2-user (dektrium) モジュールをインストールし、バックエンドにのみ yii2-admin (mdm) モジュールをインストールしました。そして http://localhost/american_eshop/yii-application/frontend/web/**user/admin/index**" 、最初に yii2 にアクセスしたい場合は、このルートにアクセスし、その後 にリダイレクトし"http://localhost/american_eshop/yii-application/frontend/web/"ます。

IE リソースにアクセスできますが、常にリダイレクトされ、サイトのどこにいるのかわかりません。

下手な英語でごめんなさい...

バックエンド構成:

main.php

<?php
$params = array_merge(
require(__DIR__ . '/../../common/config/params.php'),
require(__DIR__ . '/../../common/config/params-local.php'),
require(__DIR__ . '/params.php'),
require(__DIR__ . '/params-local.php')
);

return [
'id' => 'app-backend',
'basePath' => dirname(__DIR__),
'controllerNamespace' => 'backend\controllers',
'bootstrap' => ['log'],
'modules' => [],
'components' => [
    'user' => [
        'identityClass' => 'dektrium\user\models\User',
        'enableAutoLogin' => true,
    ],
    'authManager' => [
        'class' => 'yii\rbac\DbManager'
    ],
    'log' => [
        'traceLevel' => YII_DEBUG ? 3 : 0,
        'targets' => [
            [
                'class' => 'yii\log\FileTarget',
                'levels' => ['error', 'warning'],
            ],
        ],
    ],

    'urlManager' => [
        'enablePrettyUrl' => true,
        'showScriptName' => false,
    ],

    'errorHandler' => [
        'errorAction' => 'site/error',
    ],
],



'params' => $params,
];

メインローカル:

<?php

$config = [
'components' => [
    'request' => [
        // !!! insert a secret key in the following (if it is empty) - this is required by cookie validation
        'cookieValidationKey' => 'QuXcvHHNSiT3mEGgBln9c85IYF7uVkoU',
    ],
],
'modules' => [

    'user' => [
        'class'    => 'backend\modules\user\Module',
        'viewPath' => '@dektrium/user/views',
        'enableUnconfirmedLogin' => true,
        'confirmWithin' => 21600,
        'cost' => 14,
        'admins' => ['Admin']
    ],

]
];

if (!YII_ENV_TEST) {
// configuration adjustments for 'dev' environment
$config['bootstrap'][] = 'debug';
$config['modules']['debug'] = 'yii\debug\Module';

$config['bootstrap'][] = 'gii';
$config['modules']['gii'] = 'yii\gii\Module';
}

return $config;

フロントエンド:

主要:

<?php
$params = array_merge(
require(__DIR__ . '/../../common/config/params.php'),
require(__DIR__ . '/../../common/config/params-local.php'),
require(__DIR__ . '/params.php'),
require(__DIR__ . '/params-local.php')
);

return [
'id' => 'app-frontend',
'basePath' => dirname(__DIR__),
'bootstrap' => ['log'],
'controllerNamespace' => 'frontend\controllers',
'components' => [
    'user' => [
        'identityClass' => 'dektrium\user\models\User',
        'enableAutoLogin' => true,
    ],
    'authManager' => [
        'class' => 'yii\rbac\DbManager'
    ],

    'log' => [
        'traceLevel' => YII_DEBUG ? 3 : 0,
        'targets' => [
            [
                'class' => 'yii\log\FileTarget',
                'levels' => ['error', 'warning'],
            ],
        ],
    ],

    'errorHandler' => [
        'errorAction' => 'site/error',
    ],

    'urlManager' => [
        'enablePrettyUrl' => true,
        'showScriptName' => false,
    ],
],


'params' => $params,
];

メインローカル:

<?php

$config = [
'components' => [
    'request' => [
        // !!! insert a secret key in the following (if it is empty) - this is required by cookie validation
        'cookieValidationKey' => 'xlEFSbBB0pjvAJHtEOfY6r5BhDOTIAtB',
    ],
],
'modules' => [
    'user' => [
        'class'    => 'frontend\modules\user\Module',
        'viewPath' => '@dektrium/user/views',
        'enableUnconfirmedLogin' => true,
        'confirmWithin' => 21600,
        'cost' => 14,
        'admins' => ['Admin']
    ],
],

];

if (!YII_ENV_TEST) {
// configuration adjustments for 'dev' environment
$config['bootstrap'][] = 'debug';
$config['modules']['debug'] = 'yii\debug\Module';

$config['bootstrap'][] = 'gii';
$config['modules']['gii'] = 'yii\gii\Module';
}

return $config;
4

0 に答える 0