# business.php 业务上的一些配置。 ```php <?php /** * Created by PhpStorm. * User: zhangjincheng * Date: 16-7-14 * Time: 下午1:58 */ //强制关闭gzip $config['http']['gzip_off'] = false; //默认访问的页面 $config['http']['index'] = 'index.html'; /** * 设置域名和Root之间的映射关系 */ $config['http']['root'] = [ 'default' => [ 'index' => ['TestController', 'test'] //转到控制器 ] , 'localhost' => [ 'root' => 'www', 'index' => 'Index.html' //转到指定页面 ] ]; return $config; ``` * 设置域名访问的时候对应的根目录名称,和默认界面。 如上的设置当用localhost域名访问的时候会跳转到www/localhost目录下的index.html。 而用127.0.0.1访问的时候由于没有配置映射关系会访问www目录下的index.html。 * gzip_off:设置为true则全局强制关闭gzip压缩。 * index字段可以配置为具体页面也可以配置为控制器,如 'index' => ['TestController', 'test']将会指向TestController/test,这里的test不携带前缀标示