解決方法:
加上 '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中文網其他相關文章!