0

Is there a line for .htaccess that can tell mod_deflate is disabled on Apache? Something like this:

<!IfModule mod_deflate.c>
leon
  • 35
  • 5

1 Answers1

1

You're almost there with the exclamation point.

The correct syntax is <IfModule !mod_deflate.c>

Further info: Apache documentation.

hillsy
  • 671
  • 6
  • 12