剛看了一下Yii,安裝文件上說的,添加gii module,但是添加下面代碼後,訪問index.php?r=gii 彈出登錄框輸入密碼後不能登錄,還是在index.php?r=gii/default/login頁面。看請求有一個index.php?r=gii 的請求,回傳302。
``` $config['bootstrap'][] = 'gii'; $config['modules']['gii'] = [ 'class' => 'yii\gii\Module', // uncomment the following to add your IP if you are not connecting from localhost. 'allowedIPs' => ['127.0.0.1', '::1'], //允许访问的ip是本地ip,修改为所有ip均可访问。 ]; ```` ```` $config['bootstrap'][] = 'gii'; $config['modules']['gii'] = [ 'class' => 'yii\gii\Module', // uncomment the following to add your IP if you are not connecting from localhost. 'allowedIPs' => ['*', '::1'], //允许访问的ip是本地ip,修改为所有ip均可访问。 ]; ```
php中文網,大量的免費yii入門教學,歡迎線上學習!
以上是yii中的gii打不開怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!