How to access different applications when running multiple applications under CodeIgniter?
PHP中文网2017-05-16 16:45:39
Aren’t multiple applications multiple index.php? They just have different directories
滿天的星座2017-05-16 16:45:39
in index.php
$routing['directory'] = ENVIRONMENT;
Add variables in apache CI_ENV
# vhost/admin.conf
CI_ENV admin
# vhost/mobile.conf
CI_ENV mobile
For details, please refer to
http://www.kancloud.cn/yozman/ci-fly