用.htaccess啟用GZIP壓縮,讓wordpress加速
點擊數: 2207
文章目錄
我喜歡使用
https://developers.google.com/speed/pagespeed/insights/
來測網站速度,進而修正
影響網站速度最關鍵的其中一點
就是要啟用壓縮功能
如果你是租用虛擬主機,那你就必需檢查,該功能有沒有被啟用
像有些虛擬主機,再幫你安裝wordpress後,就自動啟用
那有些虛擬主機,安裝完wordpress後,還沒啟用,如下圖
有些wordpress外掛也會啟用
但我不喜歡使用外掛,會拖垮網站速度
我建議用.htaccess啟動Gzip或deflate
進入ftp的根目錄,找出.htaccess
若沒有,就自己建立一個.htaccess
貼入啟用GZIP壓縮代碼
- <IfModule mod_deflate.c>
- # 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
- </IfModule>
完成後!
速度明顯增加