Gii を開く
config/web.php:
$config = [ ... ]; if (YII_ENV_DEV) { $config['bootstrap'][] = 'gii'; $config['modules']['gii'] = 'yii\gii\Module'; }
web/index.php:
defined('YII_ENV') or define('YII_ENV', 'dev');に YII_ENV_DEV を設定します
localhost 以外からアクセスする場合は、設定ファイルで次の設定を行う必要があります:
'gii' => [ 'class' => 'yii\gii\Module', 'allowedIPs' => ['127.0.0.1', '::1', '192.168.0.*', '192.168.178.20'] // adjust this to your needs ],
テスト:
りー