dw-hyphen
1/29/2015 - 4:02 PM

Leverage browsing caching through htaccess.

Leverage browsing caching through htaccess.

## EXPIRES CACHING ##
<IfModule mod_expires.c>
  ExpiresActive On 
  ExpiresDefault "access plus 1 month"
  ExpiresByType image/x-icon "access plus 1 year"
  ExpiresByType image/gif "access plus 1 month"
  ExpiresByType image/png "access plus 1 month"
  ExpiresByType image/jpg "access plus 1 month"
  ExpiresByType image/jpeg "access plus 1 month"
  ExpiresByType text/css "access plus 1 month"
  ExpiresByType application/javascript "access plus 1 year"
</IfModule>
## EXPIRES CACHING ##