Reputation: 35
Is there a line for .htaccess that can tell mod_deflate is disabled on Apache? Something like this:
<!IfModule mod_deflate.c>
Upvotes: 0
Views: 126
Reputation: 699
You're almost there with the exclamation point.
The correct syntax is <IfModule !mod_deflate.c>
Further info: Apache documentation.
Upvotes: 1