yii 安装gii 提示 Error 403

原因是我的服务器绑定了ip,需要修改/config/main.php 的ipFilters值为你的ip。


    'modules'=>array(
        // uncomment the following to enable the Gii tool
        
        'gii'=>array(
            'class'=>'system.gii.GiiModule',
            'password'=>'123456',
            // If removed, Gii defaults to localhost only. Edit carefully to taste.
            'ipFilters'=>array('192.168.1.31','::1'),
        ),



你可能感兴趣的:(yii 安装gii 提示 Error 403)