热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

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

出现这个问题的原因是:YII为了安全考虑,只允许本机访问gii页面,这里我们可以从配置文件protected/config/main.php中看出来

把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页面,即可。 
推荐阅读
author-avatar
张骞2502860155
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有