Created
September 10, 2013 06:27
-
-
Save arbaaz/6505667 to your computer and use it in GitHub Desktop.
htaccess:gzip
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# BEGIN GZIP | |
# mod_gzip compression (legacy, Apache 1.3) | |
<IfModule mod_gzip.c> | |
mod_gzip_on Yes | |
mod_gzip_dechunk Yes | |
mod_gzip_item_include file \.(html?|xml|txt|css|js)$ | |
mod_gzip_item_include handler ^cgi-script$ | |
mod_gzip_item_include mime ^text/.* | |
mod_gzip_item_include mime ^application/x-javascript.* | |
mod_gzip_item_exclude mime ^image/.* | |
mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.* | |
</IfModule> | |
# END GZIP | |
# DEFLATE compression | |
<IfModule mod_deflate.c> | |
# Set compression for: html,txt,xml,js,css | |
AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/javascript text/css application/x-javascript | |
# Deactivate compression for buggy browsers | |
BrowserMatch ^Mozilla/4 gzip-only-text/html | |
BrowserMatch ^Mozilla/4.0[678] no-gzip | |
BrowserMatch bMSIE !no-gzip !gzip-only-text/html | |
# Set header information for proxies | |
Header append Vary User-Agent | |
</IfModule> | |
# END DEFLATE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment