## Use snippets for adding expires headers
While there are many different things you can do in order to make your site faster I'm going to post a little snippet to add in your .htaccess file that will set your Expire Headers time.
The faster your site loads the better is for your SEO and for your Bounce Rates.
Expire Headers is letting your browser to cache your website content and request them only after the time specified in that rule expires.
If you want to set a separate Expire Headers rule for each of your filetypes then you can use the following snippet on your .htaccess.
<code>ExpiresByType image/png A2592000</code><br>
<code>ExpiresByType image/gif A2592000</code><br>
<code>ExpiresByType image/jpg A2592000</code><br>
<code>ExpiresByType image/jpeg A2592000</code><br>
<code>ExpiresByType text/javascript A2592000</code><br>
<code>ExpiresByType application/x-javascript A2592000</code><br>
<code>ExpiresByType text/css A2592000</code>
<FilesMatch "(?i)^.*\.(ico|flv|jpg|jpeg|png|gif|svg|js|css|woff|ttf)$">
ExpiresActive On
ExpiresDefault A2592000
</FilesMatch>