• 欢迎来到主题派官网,主题源码,插件,模板下载。所有主题及插件资源不负责技术支持,售出不退!
主题派主题派  2023-06-16 15:37 主题派 隐藏边栏 |   抢沙发  6 
文章评分 0 次,平均分 0.0

WordPress 终极优化指南–开启网页 gzip 压缩

教程总目录:WordPress 终极优化指南

就好比我们在自己电脑压缩文件一样,我们的网页文件也是可以压缩的。而且压缩率比较高,可以大量的节省服务器带宽。

通常服务器上使用 gzip 压缩。他可以压缩以下文件类型:

HTML:.html 及其他动态 html 文件,如.php .aspx 等

文本文件:.txt 等

CSS 和 Javascript:扩展名.css 和.js

Web 服务:WSDL,REST 和 JSON

检测我们的网站是否开启 gzip 压缩可以使用网页工具测试:

http://tool.chinaz.com/Gzips/

在此页面输入你的网址,他可以在线检测网站是否开启压缩。下面是本站的查询结果。

开启 gzip 压缩的代码

apache 服务器

<IfModule mod_deflate.c> # Compress HTML, CSS, JavaScript, Text, XML and fonts AddOutputFilterByType DEFLATE application/javascript AddOutputFilterByType DEFLATE application/rss+xml AddOutputFilterByType DEFLATE application/vnd.ms-fontobject AddOutputFilterByType DEFLATE application/x-font AddOutputFilterByType DEFLATE application/x-font-opentype AddOutputFilterByType DEFLATE application/x-font-otf AddOutputFilterByType DEFLATE application/x-font-truetype AddOutputFilterByType DEFLATE application/x-font-ttf AddOutputFilterByType DEFLATE application/x-javascript AddOutputFilterByType DEFLATE application/xhtml+xml AddOutputFilterByType DEFLATE application/xml AddOutputFilterByType DEFLATE font/opentype AddOutputFilterByType DEFLATE font/otf AddOutputFilterByType DEFLATE font/ttf AddOutputFilterByType DEFLATE image/svg+xml AddOutputFilterByType DEFLATE image/x-icon AddOutputFilterByType DEFLATE text/css AddOutputFilterByType DEFLATE text/html AddOutputFilterByType DEFLATE text/javascript AddOutputFilterByType DEFLATE text/plain AddOutputFilterByType DEFLATE text/xml # Remove browser bugs (only needed for really old browsers) BrowserMatch ^Mozilla/4 gzip-only-text/html BrowserMatch ^Mozilla/4\.0[678] no-gzip BrowserMatch \bMSIE !no-gzip !gzip-only-text/html Header append Vary User-Agent </IfModule>

将代码写入.htaccess 即可

nginx 服务器

gzip on; gzip_comp_level 2; gzip_http_version 1.0; gzip_proxied any; gzip_min_length 1100; gzip_buffers 16 8k; gzip_types text/plain text/html text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript; gzip_disable "MSIE [1-6].(?!.*SV1)"; gzip_vary on;

将代码写入 nginx.conf 配置文件即可。

宝塔面板开启 gzip 压缩比较方便,在 nginx 设置界面就有。apache 我这边没有使用,大家自行找一下。

「点点赞赏,手留余香」

还没有人赞赏,快来当第一个赞赏的人吧!

主题派给主题派打赏
×
予人玫瑰,手有余香
  • 2
  • 5
  • 10
  • 20
  • 50
2
支付
WordPress 终极优化指南–开启网页 gzip 压缩 为主题派网版权所有,转载请注明出处,所有资源不提供技术支持。
主题派
主题派 关注:0    粉丝:0
Wordpress主题,插件,源码商城

发表评论

表情 格式 链接 私密 签到 常用语
扫一扫二维码分享
×
艾瑞克网