Skip to content

Instantly share code, notes, and snippets.

@illarionvk
Created September 13, 2013 07:35
Show Gist options
  • Save illarionvk/6547717 to your computer and use it in GitHub Desktop.
Save illarionvk/6547717 to your computer and use it in GitHub Desktop.
Apache: Serve pre-compressed static CSS and JavaScript files
AddEncoding gzip .gz
RewriteEngine On
RewriteCond %{HTTP:Accept-Encoding} gzip
RewriteCond %{REQUEST_FILENAME}.gz -f
RewriteRule ^(.*)$ $1.gz [QSA,L]
<Files *.css.gz>
ForceType text/css
</Files>
<Files *.js.gz>
ForceType application/javascript
</Files>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment