browser caching .htaccess
Hi Guys & Girls
I'm trying to make browser caching work on a website, I think I followed all the rules with my .htaccess file (below) and report of what tester say below that....
Any idea what I'm doing incorrectly??
Thanks in advance....
.htaccess file content:
__________________________________________________
## EXPIRES CACHING ##
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access 1 month"
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>
## EXPIRES CACHING ##
ErrorDocument 404 http://www.silvertreeestates.co.za/404page.html
__________________________________________________
But when testing site, it still says:
"Expiration not specified" for all files.
[MOD EDIT] large repetitive code dump removed