0
這是我cacheing我的網站在用戶的瀏覽器代碼:htaccess的:內容似乎並沒有得到cache'd
## EXPIRES CACHING ##
<IfModule mod_expires.c>
Header unset Pragma
FileETag None
Header unset ETag
# cache images/pdf docs for 30 days
<FilesMatch "\.(ico|pdf|jpg|jpeg|png|gif|js|ttf|woff|eot|svg)$">
Header set Cache-Control "max-age=2592000, public, must-revalidate"
Header unset Last-Modified
</FilesMatch>
# cache html/htm/xml/txt diles for 10 days
<FilesMatch "\.(html|htm|xml|txt|xsl|css|php)$">
Header set Cache-Control "max-age=864000, must-revalidate"
</FilesMatch>
</IfModule>
## EXPIRES CACHING ##
當我檢查http://developers.google.com/speed/pagespeed/insights/我的網站的表現似乎並不像它的獲得緩存。
代碼有問題嗎?或者它可能與更深層次的服務器設置有關?
謝謝!