Leverage Browser Caching
-
Hi there
I would like to use these settings in .htaccess as it renders better results – (the code under ‘for Apache Servers’)
https://gtmetrix.com/serve-static-assets-with-an-efficient-cache-policy.html
Is there any way to disable this in WP optimize so it does not insert it’s own settings in the .htaccess file or customise it – or can I just delete the following code and replace it..
# BEGIN WP-Optimize Browser Cache
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType text/css “access 28 days”
ExpiresByType text/html “access 28 days”
ExpiresByType image/gif “access 28 days”
ExpiresByType image/png “access 28 days”
ExpiresByType image/jpg “access 28 days”
ExpiresByType image/jpeg “access 28 days”
ExpiresByType image/webp “access 28 days”
ExpiresByType image/x-icon “access 28 days”
ExpiresByType application/pdf “access 28 days”
ExpiresByType application/javascript “access 28 days”
ExpiresByType text/x-javascript “access 28 days”
ExpiresByType application/x-shockwave-flash “access 28 days”
ExpiresDefault “access 28 days”
</IfModule><IfModule mod_headers.c>
<filesMatch “\.(ico|jpe?g|png|gif|webp|swf)$”>
Header set Cache-Control “public”
</filesMatch>
<filesMatch “\.(css)$”>
Header set Cache-Control “public”
</filesMatch>
<filesMatch “\.(js)$”>
Header set Cache-Control “private”
</filesMatch>
<filesMatch “\.(x?html?|php)$”>
Header set Cache-Control “private, must-revalidate”
</filesMatch>
</IfModule>#Disable ETag
FileETag None
# END WP-Optimize Browser Cache`Thanks!
SHeree
- The topic ‘Leverage Browser Caching’ is closed to new replies.