themes/.htaccess
author Dan Fuhry <dan@enanocms.org>
Fri, 19 Nov 2010 02:46:14 -0500
changeset 1327 e8f4dea267c8
parent 596 82320949a3b5
permissions -rw-r--r--
Changed var_export() calls to use "true" as second parameter. Not sure which PHP version it was added in, but I could have sworn it wasn't there last time I checked.

# Thanks to http://phaedo.cx/archives/2007/07/25/tools-for-optimizing-your-website-etag-and-expire-headers-in-django-apache-and-lighttpd/ for this.
FileETag MTime Size

# http://www.askapache.com/htaccess/apache-speed-expires.html
<IfModule mod_headers.c>
  <FilesMatch "\.(jpg|jpeg|png|gif|js|css)$">
    Header set Expires "Wed, 1 Jan 2020 20:00:00 GMT"
  </FilesMatch>
</IfModule>

# http://www.askapache.com/htaccess/apache-speed-compression.html
<IfModule mod_deflate.c>
  <FilesMatch "\.(js|css)$">
    SetOutputFilter DEFLATE
  </FilesMatch>
</IfModule>