gii访问时出现403禁止访问

版本2.0.6

修改 app\config\main-local.php 文件即可:

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

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

    $config['bootstrap'][] = 'gii';
    $config['modules']['gii'] = [
        'class' => 'yii\gii\Module',
    	'allowedIPs' => ['127.0.0.1', '::1', '192.168.1.*'] // 出现403禁止访问按需调整这里
    ];
}

return $config;


你可能感兴趣的:(gii访问时出现403禁止访问)