3

How do you enable gzip decompression on the server side for requests.

I have seen response compression : How can I get Apache gzip compression to work?

But i couldn't find how to decompress a request to the server?

Community
  • 1
  • 1
airboss
  • 1,767
  • 3
  • 16
  • 21

1 Answers1

3

Found the answer :

In the root .htaccess file we will need to add this option to enable gzip decompression :

SetInputFilter DEFLATE

Here's the link : http://httpd.apache.org/docs/2.2/mod/mod_deflate.html#enable Check "Input Decompression"

airboss
  • 1,767
  • 3
  • 16
  • 21