1. I am setting cache expiry period for images on my server using some .htaccess code. The thing is, when I checked the cache-expiry period of images on some popular websites, it's mostly between 31536000 (1 year) to 15552000 (180 days) to 5184000 (60 days). A cache-expiry header is used to tell the browser to store the static files in its cache for a certain period, right? Then WTH?! Why are these websites setting such long expiry? Am I missing something here?
2. Also which of these below (.htaccess codes) is better in your opinion?
<FilesMatch "\.(ico|jpg|jpeg|png|gif|swf|pdf)$">
ExpiresDefault A0
Header set Cache-Control "max-age=5184000, public, must-revalidate, proxy-revalidate"
</FilesMatch>
<--- OR --->
# Expire images header
ExpiresActive On
ExpiresDefault A0
ExpiresByType image/gif A5184000
ExpiresByType image/png A5184000
ExpiresByType image/jpg A5184000
ExpiresByType image/jpeg A5184000
ExpiresByType image/ico A5184000
ExpiresByType image/swf A5184000
ExpiresByType image/pdf A5184000
EDIT: 3. How to set expiry-headers for external files? for example, js and css files from external sources? (many do not have a set cache expiry period, I checked)
Looking for a knowledgeable answer. Thanks.