我正在使用homestead作为我的yii2教程的开发环境,我的问题是我无法配置下面的行来访问i1.post_id
中的gii
http://hostname/index.php?r=gii
答案 0 :(得分:0)
我让Gii在conf/web.php
if (YII_ENV_DEV) {
// configuration adjustments for 'dev' environment
$config['bootstrap'][] = 'gii';
$config['modules']['gii'] = [
'class' => 'yii\gii\Module',
'allowedIPs' => ['192.168.56.1'],
];
}
使用Yii 2.0.4
在YII_ENV_DEV
文件
web.php
忘了提。如果您正在使用Vagrant,我可以共享我的bootstrap.sh
文件,该文件可以从Ubuntu Precise创建Yii2环境。根本不需要宅基地。如果你需要,请给我留言。