Skip to content

Instantly share code, notes, and snippets.

@nixjobin
Last active May 6, 2016 19:59
Show Gist options
  • Save nixjobin/20de15c0727f9340986d to your computer and use it in GitHub Desktop.
Save nixjobin/20de15c0727f9340986d to your computer and use it in GitHub Desktop.
Gzip compression with htaccess
# Gzip Start
<FilesMatch "\.(js|css|xml|gz)$">
Header append Vary: Accept-Encoding
SetOutputFilter DEFLATE
AddOutputFilterByType DEFLATE text/html text/css text/plain text/xml application/x-javascript application/x-httpd-php
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip
Header append Vary User-Agent env=!dont-vary
</FilesMatch>
# Gzip End
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment