弹霄博科

小谈谈一亩三分地



Typecho 开启 Gzip


发布日期: 2016/02/22
更新日期: 2020/04/28
作者: 小谈谈
分类: Typecho
标签: typecho, gzip
阅读时间: 1 分钟
字数: 24 字


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

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

添加如下内容到下一行。

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