WordPress 开启Gzip压缩

2023-02-24 10:11:19 浏览数 (1)

网络上关于开始Gzip压缩的方法介绍的文章还是很多的,这里有一篇写得比较详细,也就不再重复别人已经做过的工作了(猛击此处查看)。这里我采用的是直接修改index.php文件的方法达到压缩效果的,下载index.php文件后在文件中加入ob_start(“ob_gzhandler”);保存之后替换掉源文件即可,修改之后的文件如下所示:

代码语言:javascript复制
< ?php
/**
 * Front to the WordPress application. This file doesn't do anything, but loads
 * wp-blog-header.php which does and tells WordPress to load the theme.
 *
 * @package WordPress
 */

/**
 * Tells WordPress to load the WordPress theme and output it.
 *
 * @var bool
 */
ob_start("ob_gzhandler");
define('WP_USE_THEMES', true);

/** Loads the WordPress Environment and Template */
require('./wp-blog-header.php');
?>

启用压缩之后可以猛击此处检测压缩效果:

网址 http://h4ck.ws 检测结果如下:

是否压缩

压缩类型

gzip

原始文件大小

60337 字节

压缩后文件大小

16267 字节

压缩率(估计值)

73.04%

☆文章版权声明☆

* 网站名称:obaby@mars * 网址:https://h4ck.org.cn/ * 本文标题: 《WordPress 开启Gzip压缩》 * 本文链接:https://h4ck.org.cn/2010/12/wordpress-gzip/ * 转载文章请标明文章来源,原文标题以及原文链接。请遵从 《署名-非商业性使用-相同方式共享 2.5 中国大陆 (CC BY-NC-SA 2.5 CN) 》许可协议。


分享文章:

相关文章:

  1. WordPress 正文添加标签选项
  2. WordPress 主题 图片自适应宽度
  3. WordPress jQuery隐藏侧边栏
  4. WordPress 4.2.1 gravatar头像无法显示
  5. WordPress 优化404页面
  6. WordPress 中文分词搜索
  7. Vendetta theme for WordPress
  8. WordPress 首页加载速度(根本停不下来!)
  9. WordPress 仿Milw0rm 主题
  10. BuddyPress Theme Remove Sidebar

0 人点赞