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 压缩 为主题派网版权所有,转载请注明出处,所有资源不提供技术支持。
你可能也喜欢
- ♥ 织梦化妆美甲培训类企业网站模板06/16
- ♥ AI 无脑搬运答题项目竟然是这样玩06/16
- ♥ 起底 ChatGPT 创始人背后加密项目相关山寨币遭“爆炒06/16
- ♥ 关于我们06/16
- ♥ thinkphp 框架源码交易系统/资源网站源码05/16
- ♥ Telnet 宽带电视和互联网提供商 WordPress 主题-主题派04/17