使用.htaccess進行瀏覽器圖片文件緩存

對於圖片類網站,每次打開頁面都要從新下載圖片,慢不說,還很是浪費流量。這時就須要用到緩存,強制瀏覽器緩存圖片文件javascript

緩存文件,提問網站訪問數度,減小流量消耗,現提供2中緩存代碼css

打開.htaccess文件,寫入下面代碼
html

方法一:統一緩存時長 java

<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>

注意:緩存

ExpiresDefault "access 1 month" ,默認文件緩存時長,慎用,不然你的有些方法將失效,好比記錄瀏覽量,必須F5刷新頁面才能夠app

擴展閱讀:網站

 

如何建立.htaccess文件?spa

下載.htaccess文件htm

原文地址:http://cssteach.com/show-20-113.html

相關文章
相關標籤/搜索