I recently ran an SEO check on my site which is telling me (amongst other things) that I'm not using expires headers for my images. The explanation advises that to resolve this I some lines to the .htaccess file, specifically:
<IfModule mod_expires.c>
ExpiresActive on
ExpiresByType image/jpg "access plus 1 month"
ExpiresByType image/jpeg "access plus 1 month"
ExpiresByType image/gif "access plus 1 month"
ExpiresByType image/png "access plus 1 month"
</IfModule>What should I be doing to make use of these tags? I haven't come across the .htaccess file in Django/Mezzanine so am not sure of how I can make such an alteration.
Any advice/feedback/best practice suggestions would be greatly appreciated as this isn't an area I'm in any way familiar with.
Thanks!
Rich