練功房推薦書單

  • 黑心建商的告白:買屋前不看會哭的17堂課
  • 黑心房仲的告白:買屋簽約前最後救命的17堂課
  • 黑心投資客炒房告白:搞懂中古屋坑錢陷阱的17堂課
  • 猛虎出閘制霸版:最新OCP Java SE 6 Programmer專業認證(附原始程式碼及範例檔)
讓CentOS 4.4上的Apache 2支援網頁壓縮  XML
Forum Index » Apache HTTP Server
Author Message
andowson

六段學員
[Avatar]

Joined: 2007-01-02 22:20:40
Messages: 662
Location: 台北
Offline

網頁壓縮可以節省傳輸頻寬,同時也節省傳輸時間(不過如果加上CPU運算的時間可能會打點折)
先檢查網站有沒有支援HTTP Compression
http://www.seoconsultants.com/tools/compression.asp
如果沒有的話,Apache 2的mod_deflate模組可幫我們完成這個任務
由於CentOS 4.4 預設安裝的Apache 2已將安裝好mod_deflate.so,所以我們只要將下列的設定加到/etc/httpd/conf/httpd.conf即可
<Location />
    # Insert filter
    SetOutputFilter DEFLATE
    
    # Netscape 4.x has some problems...
    BrowserMatch ^Mozilla/4 gzip-only-text/html
    
    # Netscape 4.06-4.08 have some more problems
    BrowserMatch ^Mozilla/4\.0[678] no-gzip
    
    # MSIE masquerades as Netscape, but it is fine
    # BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
    
    # NOTE: Due to a bug in mod_setenvif up to Apache 2.0.48
    # the above regex won't work. You can use the following
    # workaround to get the desired effect:
    BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
    
    # Don't compress images
    SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary    
    
    # Make sure proxies don't deliver the wrong content
    Header append Vary User-Agent env=!dont-vary
</Location>

重新啟動Apache,再到上面的網站檢查看看,如果出現Compressed (gzip),就成功了。

This message was edited 2 times. Last update was at 2007-01-06 14:35:22


分享經驗 累積智慧
[WWW] [MSN]
 
Forum Index » Apache HTTP Server
Go to: