Skip to content

Instantly share code, notes, and snippets.

@shuuheyhey
Forked from bhollis/.htaccess
Created June 21, 2013 21:28
Show Gist options
  • Save shuuheyhey/5834476 to your computer and use it in GitHub Desktop.
Save shuuheyhey/5834476 to your computer and use it in GitHub Desktop.
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]
@shuuheyhey
Copy link
Author

gzipを直接配信するとき

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment