Well, I'm having a problem getting the blessed "Take browser cache" from PageSpeed Insights. The site I'm doing this is on Wordpress. The entire internet indicates the same code to be inserted into the .htaccess file, either in English or Portuguese, which is as follows:
# COMEÇA BROWSER CACHE
<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 plus 1 year”
ExpiresByType text/css “access plus 1 month”
ExpiresByType application/pdf “access plus 1 month”
ExpiresByType text/x-javascript “access plus 1 month”
ExpiresByType application/x-shockwave-flash “access plus 1 month”
ExpiresByType image/x-icon “access plus 1 year”
ExpiresByType application/javascript “access plus 1 month”
ExpiresDefault “access plus 2 days”
</IfModule>
# TERMINA BROWSER CACHE
But whenever I use this, the site is out of breath, I do not know why this occurs, I used that same code in other sites and it did not stay that way.
Can anyone tell me if there has been any change and this form is no longer working?