Gii 열기
config/web.php:
$config = [ ... ]; if (YII_ENV_DEV) { $config['bootstrap'][] = 'gii'; $config['modules']['gii'] = 'yii\gii\Module'; }
web/index.php에서 YII_ENV_DEV 설정:
defined('YII_ENV') or define('YII_ENV', 'dev');
로컬 호스트가 아닌 액세스의 경우 구성 파일에 다음 설정이 필요합니다.
'gii' => [ 'class' => 'yii\gii\Module', 'allowedIPs' => ['127.0.0.1', '::1', '192.168.0.*', '192.168.178.20'] // adjust this to your needs ],
테스트:
http://hostname/index.php?r=gii