diff options
author | Dries Buytaert <dries@buytaert.net> | 2011-09-18 20:42:17 -0400 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2011-09-18 20:42:17 -0400 |
commit | e7b5088ef9db78bd9f04052b53dde0eaa31683f2 (patch) | |
tree | 947b4975ac1a2d22c02131865bdbff2def8fafc9 /.htaccess | |
parent | 87abe1447f7b9e2ce4767d72e58c72bac24f8226 (diff) | |
download | brdo-e7b5088ef9db78bd9f04052b53dde0eaa31683f2.tar.gz brdo-e7b5088ef9db78bd9f04052b53dde0eaa31683f2.tar.bz2 |
- Patch #1116416 by Kars-T, Coornail: use 'Header set' instead of 'Header append' in .htaccess to avoid double encoding.
Diffstat (limited to '.htaccess')
-rw-r--r-- | .htaccess | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -129,7 +129,7 @@ DirectoryIndex index.php index.html index.htm <FilesMatch "(\.js\.gz|\.css\.gz)$"> # Serve correct encoding type. - Header append Content-Encoding gzip + Header set Content-Encoding gzip # Force proxies to cache gzipped & non-gzipped css/js files separately. Header append Vary Accept-Encoding </FilesMatch> |