Community Support Forums — WordPress® ( Users Helping Users ) — 2011-04-24T20:16:08-05:00 http://www.primothemes.com/forums/feed.php?f=5&t=6186 2011-04-24T20:16:08-05:00 http://www.primothemes.com/forums/viewtopic.php?t=6186&p=13277#p13277 <![CDATA[Adding additional .htaccess Client-Side Expiries?]]>
However, that shouldn't prevent many of the other items from being cached on the client side, right?

Would it harm the Quick Cache installation if the following code was added to the .htaccess file? It seems that "the fastest download is the one that never happened..."

Anyone's thoughts? Have you tried anything similar? Success? Problems?

Code:
# BEGIN Expire headers
<IfModule mod_expires.c>
  ExpiresActive On
  ExpiresDefault "access plus 7200 seconds"
  ExpiresByType image/x-icon "access plus 2592000 seconds"
  ExpiresByType image/jpeg "access plus 2592000 seconds"
  ExpiresByType image/png "access plus 2592000 seconds"
  ExpiresByType image/gif "access plus 2592000 seconds"
  ExpiresByType application/x-shockwave-flash "access plus 2592000 seconds"
  ExpiresByType text/css "access plus 2592000 seconds"
  ExpiresByType text/javascript "access plus 2592000 seconds"
  ExpiresByType application/x-javascript "access plus 2592000 seconds"
  ExpiresByType text/html "access plus 7200 seconds"
  ExpiresByType application/xhtml+xml "access plus 7200 seconds"
</IfModule>
# END Expire headers

# BEGIN Cache-Control Headers
<IfModule mod_headers.c>
  <FilesMatch "\\.(ico|jpe?g|png|gif|swf|gz)$">
    Header set Cache-Control "max-age=2592000, public"
  </FilesMatch>
  <FilesMatch "\\.(css)$">
    Header set Cache-Control "max-age=2592000, public"
  </FilesMatch>
  <FilesMatch "\\.(js)$">
    Header set Cache-Control "max-age=2592000, private"
  </FilesMatch>
<filesMatch "\\.(html|htm)$">
Header set Cache-Control "max-age=7200, public"
</filesMatch>
# Disable caching for scripts and other dynamic files
<FilesMatch "\.(pl|php|cgi|spl|scgi|fcgi)$">
Header unset Cache-Control
</FilesMatch>
</IfModule>
# END Cache-Control Headers

Statistics: Posted by Paul030 — April 24th, 2011, 8:16 pm


]]>