해결책:
'allowedIPs'=>['*']를 추가하세요.
(추천 튜토리얼: yii 프레임워크)
다음과 같습니다.
if (!YII_ENV_TEST) { // configuration adjustments for 'dev' environment $config['bootstrap'][] = 'debug'; $config['modules']['debug'] = [ 'class' => 'yii\debug\Module', 'allowedIPs'=>['*'] ]; $config['bootstrap'][] = 'gii'; $config['modules']['gii'] = [ 'class' => 'yii\gii\Module', 'allowedIPs'=>['*'] ]; }
더 많은 프로그래밍 관련 내용을 보려면 PHP 중국어 웹사이트 프로그래밍 소개 칼럼을 주목해주세요!
위 내용은 yii 프레임워크에서는 gii에 액세스할 수 없습니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!