images/.htaccess
author Dan
Mon, 13 Apr 2009 16:57:20 -0400
changeset 907 44851d7e9bda
parent 596 82320949a3b5
permissions -rw-r--r--
Live Re-Auth is now required for deleting pages, editing ACLs, protecting pages, and clearing logs. Committing in a hurry as a storm is coming in, hope everything is in there.

# 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>