Speed optimization: add headers and gzip commands.

git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@293 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
mensonge 2009-02-23 17:15:54 +00:00
parent 0c81abaa3e
commit e9c9d8b22b

View file

@ -17,5 +17,19 @@ RewriteRule ^([^/.]+)/?(.*)$ $1.php/$2 [QSA,L]
# This second part is used to speed-up the application
#####################################
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/ico "access plus 15 days"
ExpiresByType image/png "access plus 15 days"
ExpiresByType image/gif "access plus 15 days"
ExpiresByType text/js "access plus 15 days"
ExpiresByType text/css "access plus 15 days"
</IfModule>
<IfModule mod_deflate.c>
#<FilesMatch "\.(js|css)$">
SetOutputFilter DEFLATE
#</FilesMatch>
</IfModule>