首页 > PHP资讯 > PHP培训技术 > Yii(yiiframework)框架(三):gii页面出现403错误的解决方法

Yii(yiiframework)框架(三):gii页面出现403错误的解决方法

PHP培训技术

把yii框架和应用搭建好了,测试了一下gii页面,竟然出现了403错误


Error 403You 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页面,即可。 

PHP培训技术

本文由欣才IT学院整理发布,未经许可,禁止转载。
支持50不支持0