Skip to content

Instantly share code, notes, and snippets.

@visualpropaganda
Last active December 11, 2015 10:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save visualpropaganda/4585583 to your computer and use it in GitHub Desktop.
Save visualpropaganda/4585583 to your computer and use it in GitHub Desktop.
Performance: Add gzip for js
# Add gzip compression for javascript
RewriteEngine on
RewriteCond %{HTTP:Accept-Encoding} gzip
RewriteCond %{REQUEST_FILENAME}.gz -f
RewriteRule (.*)\.js$ $1\.js.gz [L]
AddType "text/javascript" .js.gz
AddEncoding gzip .gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment