解決Apache SSL Cache的問題

apache

為了提升網站速度
替apache加上cache
將圖片cache住,以後讀就快哩
大致就是在.htaccess寫入這些東東

  <FilesMatch "\.(ico|pdf|jpg|jpeg|png|gif|js)$">
      Header set Cache-Control "max-age=864000, public, must-revalidate"
  </FilesMatch>  
更多...