Skip to content

Instantly share code, notes, and snippets.

View dima734's full-sized avatar

Profile dima734

  • Russia
View GitHub Profile
@illarionvk
illarionvk / .htaccess
Created September 13, 2013 07:35
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