plugins/gallery/.htaccess
author Dan Fuhry <dan@enanocms.org>
Sun, 01 Aug 2010 12:42:21 -0400
changeset 39 e9a7e37bdadd
parent 36 60e80cd47b61
permissions -rw-r--r--
Fixed some PHP warnings and display issues. Brought up to date with 1.1.x plugin management/install/upgrade system.

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