修改站点跟目录 index.php,在其中查找。

1
2
3
4
if (!@include_once 'config.inc.php') {
file_exists('./install.php') ? header('Location: install.php') : print('Missing Config File');
exit;
}

添加如下内容到下一行。

1
2
/** 开启gzip压缩 */
ob_start('ob_gzhandler');