用.htaccess啟用GZIP壓縮,讓wordpress加速

我喜歡使用

  https://developers.google.com/speed/pagespeed/insights/

來測網站速度,進而修正

影響網站速度最關鍵的其中一點

就是要啟用壓縮功能

如果你是租用虛擬主機,那你就必需檢查,該功能有沒有被啟用

像有些虛擬主機,再幫你安裝wordpress後,就自動啟用

那有些虛擬主機,安裝完wordpress後,還沒啟用,如下圖

 

有些wordpress外掛也會啟用

但我不喜歡使用外掛,會拖垮網站速度

我建議用.htaccess啟動Gzip或deflate

進入ftp的根目錄,找出.htaccess

若沒有,就自己建立一個.htaccess

貼入啟用GZIP壓縮代碼
 
  1. <IfModule mod_deflate.c>   
  2. # Insert filters   
  3. AddOutputFilterByType DEFLATE text/plain   
  4. AddOutputFilterByType DEFLATE text/html   
  5. AddOutputFilterByType DEFLATE text/xml   
  6. AddOutputFilterByType DEFLATE text/css   
  7. AddOutputFilterByType DEFLATE application/xml   
  8. AddOutputFilterByType DEFLATE application/xhtml+xml   
  9. AddOutputFilterByType DEFLATE application/rss+xml   
  10. AddOutputFilterByType DEFLATE application/javascript   
  11. AddOutputFilterByType DEFLATE application/x-javascript   
  12. AddOutputFilterByType DEFLATE application/x-httpd-php   
  13. AddOutputFilterByType DEFLATE application/x-httpd-fastphp   
  14. AddOutputFilterByType DEFLATE image/svg+xml   
  15.   
  16. # Drop problematic browsers   
  17. BrowserMatch ^Mozilla/4 gzip-only-text/html   
  18. BrowserMatch ^Mozilla/4\.0[678] no-gzip   
  19. BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html   
  20.   
  21. # Make sure proxies don't deliver the wrong content   
  22. Header append Vary User-Agent env=!dont-vary   
  23. </IfModule>  

完成後!

速度明顯增加

 

評論 (0)

此處尚未發表評論

留言

  1. 以遊客身份發表評論。 註冊登入到您的帳戶。
附件 (0 / 3)
分享您的位置