.htaccess and browser caching
- by Tim
I ran across these suggested htaccess edits. Is this a good practice? Is this something I should implement on my wordpress site?:
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access plus 1 year"
ExpiresByType image/jpeg "access plus 1 year"
ExpiresByType image/gif "access plus 1 year"
ExpiresByType image/png "access…