DD-UX/MBAS/master/source/.htaccess
## Reference https://gist.github.com/bhollis/2200790
AddEncoding gzip .gz
RewriteEngine on
RewriteCond %{HTTP:Accept-encoding} gzip
RewriteCond %{HTTP_USER_AGENT} !Konqueror
RewriteCond %{REQUEST_FILENAME}.gz -f
RewriteRule ^(.*).css$ $1.css.gz [QSA,L]
RewriteRule ^(.*).js$ $1.js.gz [QSA,L]
RewriteRule ^(.*).html$ $1.html.gz [QSA,L]
<Files *.css.gz>
ForceType text/css
</Files>
<Files *.js.gz>
ForceType application/javascript
</Files>
<Files *.html.gz>
ForceType text/html
</Files>
On Github License
Files