2010-12-30 06:03

Apache Expires模組(mod_expires) 設定參數

  1. # @version $Id: .htaccess 130 2010-09-29 10:03:56Z jax.hu $ 
  2.  
  3. #Options -FollowSymLinks -Indexes #TODO 開發時關閉 
  4.  
  5. # 關閉 Apache Rewrite 模組 
  6. <IfModule mod_rewrite.c> 
  7.    RewriteEngine off 
  8. </IfModule> 
  9.  
  10.  
  11. # 啟用 Apache mod_expires 模組,來管理 browser 端的 cache 時間 
  12. <IfModule mod_expires.c> 
  13.    ExpiresActive On 
  14.    ExpiresDefault A0  
  15.  
  16.    # ExpiresDefault "<base> [plus] {<num> <type>}*" 
  17.    # base:[ access | modification ] 
  18.    # type:[ years | months | weeks | days | hours | minutes | seconds ] 
  19.  
  20.    <FilesMatch "\.(flv|ico|pdf|avi|mov|ppt|doc|mp3|wmv|wav)$"> 
  21.        ExpiresDefault "access plus 1 years" 
  22.    </FilesMatch> 
  23.  
  24.    <FilesMatch "\.(jpg|jpeg|png|gif|swf|txt|xml|js|css)$"> 
  25.        ExpiresDefault "access plus 7 days" 
  26.    </FilesMatch> 
  27. </IfModule> 
  28.  
  29. # 關閉 Apache 對檔案的實體標籤 
  30. FileETag none 

參考來源:
mod_expires - Apache HTTP Server:
mod_expires - Apache 2.2 中文版参考手册:
Apache2 載入 Expires 的模組(mod_expires) 與 設定
ezDIY.org / 使用mod_expires模組來加速網頁瀏覽

0 回應: