對於圖片類網站,每次打開頁面都要重新下載圖片,慢不說,還非常浪費流量。這時就需要用到緩存,強制瀏覽器緩存圖片文件
緩存文件,提問網站訪問數度,減少流量消耗,現提供2中緩存代碼
開啟.htaccess文件,寫入下面程式碼
方法一:統一快取時長
<FilesMatch ".(flv|gif|jpg|jpeg|png|ico|txt|swf|pdf|swf|js)$"> Header set Cache-Control "max-age=2592000" </FilesMatch>
方法二:依不同檔案類型快取時間
<IfModule mod_expires.c> ExpiresActive On ExpiresByType image/jpg "access 1 year" ExpiresByType image/jpeg "access 1 year" ExpiresByType image/gif "access 1 year" ExpiresByType image/png "access 1 year" ExpiresByType text/css "access 1 month" ExpiresByType text/html "access 1 month" ExpiresByType application/pdf "access 1 month" ExpiresByType text/x-javascript "access 1 month" ExpiresByType application/x-shockwave-flash "access 1 month" ExpiresByType image/x-icon "access 1 year" ExpiresDefault "access 1 month" #默认文件缓存时长,慎用 </IfModule>
注意:
ExpiresDefaultth "ExpiresDefaultth" ,預設檔案快取時長,慎用,否則你的某些方法會失效,例如記錄瀏覽量,必須F5刷新頁面才可以
擴充閱讀:
如何建立.htaccess檔案?
下載.htaccess檔案
原文網址:http://cssteach.com/show-20-113.html
以上就介紹了htaccess 使用htaccess進行瀏覽器圖片檔案緩存,包括了htaccess方面的內容,希望對PHP教學有興趣的朋友有所幫助。