把yii框架和應用程式搭建好了,測試了一下gii頁面,竟然出現了403錯誤
Error 403
You are not allowed to access this page.
出現這個問題的原因是:YII為了安全考慮,只允許本機存取gii頁面,這裡我們可以從設定檔protected/config/main.php看出來:
'modules'=>array( // uncomment the following to enable the Gii tool 'gii'=>array( 'class'=>'system.gii.GiiModule', 'password'=>'111', // If removed, Gii defaults to localhost only. Edit carefully to taste. 'ipFilters'=>array('127.0.0.1','::1'), ), ),
為了讓自己的電腦可以存取gii頁面,需要對設定檔進行修改:
'ipFilters'=>array('127.0.0.1','192.168.23.1','::1'),
加入自己電腦的IP位址。然後再次訪問訪問gii頁面,即可。
以上就是Yii(yiiframework)框架(三):gii頁出現403錯誤的解決方法的內容,更多相關內容請關注PHP中文網(www.php.cn)!