用.htaccess启用GZIP压缩,让wordpress加速
点击数: 2188
文章目录
我喜欢使用
https://developers.google.com/speed/pagespeed/insights/
来测网站速度,进而修正
影响网站速度最关键的其中一点
就是要启用压缩功能
如果你是租用虚拟主机,那你就必需检查,该功能有没有被启用
像有些虚拟主机,再帮你安装wordpress后,就自动启用
那有些虚拟主机,安装完wordpress后,还没启用,如下图
有些wordpress外挂也会启用
但我不喜欢使用外挂,会拖垮网站速度
我建议用.htaccess启动Gzip或deflate
进入ftp的根目录,找出.htaccess
若没有,就自己建立一个.htaccess
贴入启用GZIP压缩代码
- # Insert filters
- AddOutputFilterByType DEFLATE text/plain
- AddOutputFilterByType DEFLATE text/html
- AddOutputFilterByType DEFLATE text/xml
- AddOutputFilterByType DEFLATE text/css
- AddOutputFilterByType DEFLATE application/xml
- AddOutputFilterByType DEFLATE application/xhtml+xml
- AddOutputFilterByType DEFLATE application/rss+xml
- AddOutputFilterByType DEFLATE application/javascript
- AddOutputFilterByType DEFLATE application/x-javascript
- AddOutputFilterByType DEFLATE application/x-httpd-php
- AddOutputFilterByType DEFLATE application/x-httpd-fastphp
- AddOutputFilterByType DEFLATE image/svg+xml
- # Drop problematic browsers
- BrowserMatch ^Mozilla/4 gzip-only-text/html
- BrowserMatch ^Mozilla/4\.0[678] no-gzip
- BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
- # Make sure proxies don't deliver the wrong content
- Header append Vary User-Agent env=!dont-vary
完成后!
速度明显增加