Browser Caching
-
When I check the performance of my site it indicates the following:
The following cacheable resources have a short freshness lifetime. Specify an expiration at least one week in the future for the following resources:
https://ourfamilybios.com/mafw_wp/wp-content/uploads/fvm/cache/footer-31cf9940-1486078303.min.js
https://ourfamilybios.com/mafw_wp/wp-content/uploads/fvm/cache/footer-43961962-1486518162.min.js
https://ourfamilybios.com/mafw_wp/wp-content/uploads/fvm/cache/header-46218c21-1486152480.min.jsHere’s what I have in my .htaccess file:
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/gif A29030400
ExpiresByType image/png A29030400
ExpiresByType image/jpeg A29030400
ExpiresByType image/x-icon A29030400
ExpiresByType application/pdf A29030400
ExpiresByType application/x-javascript A604800
ExpiresByType text/plain A86400
ExpiresByType text/css A604800
ExpiresByType text/javascript A604800
</IfModule>Is there something I can do to fix this?
- The topic ‘Browser Caching’ is closed to new replies.