Wordpress browser caching

From KOP KB
Revision as of 20:01, 23 October 2014 by SirBender (talk | contribs) (Created page with " By specifying a longer caching period for your web page components (HTML, images, Javascripts, CSS documents, etc.), web browsers will cache these elements locally so that th...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

By specifying a longer caching period for your web page components (HTML, images, Javascripts, CSS documents, etc.), web browsers will cache these elements locally so that they don’t need to be downloaded from the server each time the page is accessed.

You may leverage browser cache by adding the following code to the .htaccess

<syntaxhiglight lang="htaccess">

<IfModule mod_headers.c>

  1. YEAR

<FilesMatch ".(ico|gif|jpg|jpeg|png|flv|pdf)$">

Header set Cache-Control "max-age=29030400"

</FilesMatch>

  1. WEEK

<FilesMatch ".(js|css|swf)$">

Header set Cache-Control "max-age=604800"

</FilesMatch>

  1. 24 HOURS

<FilesMatch ".(html|htm|txt|php)$">

Header set Cache-Control "max-age=86400"

</FilesMatch> </IfModule>


</syntaxhiglight>

source: http://www.bluehost.com/blog/educational/websites/the-ultimate-guide-to-supercharging-your-wordpress-blog-2097/