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:
parent
0c81abaa3e
commit
e9c9d8b22b
1 changed files with 14 additions and 0 deletions
14
.htaccess
14
.htaccess
|
@ -17,5 +17,19 @@ RewriteRule ^([^/.]+)/?(.*)$ $1.php/$2 [QSA,L]
|
||||||
# This second part is used to speed-up the application
|
# 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>
|
||||||
|
|
Loading…
Reference in a new issue