Disable Gzip Compression in .htaccess file

gzip

Solution

Put this code in the htaccess file and save it.It worked for me.Disabled gzip compression.

RewriteRule ^(.*)$ $1 [NS,E=no-gzip:1,E=dont-vary:1]

Thanks

Problem

I have tried using the following code but my website is still compressed using gzip: ``` SetOutputFilter DEFLATE SetEnvIfNoCase Request_URI \.(html?|txt|css|js|php|pl)$$ no-gzip dont-vary ``` How can I disable gzip compressions?

Original source

Related problems