作者:张骞2502860155 | 来源:互联网 | 2013-12-26 17:17
把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页面,即可。