Question: I see that mod_gzip is on by default. How can I turn it off?
- You can put the following into a .htaccess file within the directory you want to turn it off in.
<IfModule mod_gzip.c>
mod_gzip_on Off
</IfModule>Question: I see that mod_gzip is on by default. How can I turn it off?
<IfModule mod_gzip.c>
mod_gzip_on Off
</IfModule>