Comment désactiver la compression Apache par hôte virtuel ou par répertoire ? Cela se fait-il par une modification du fichier http.conf, un fichier .htaccess ou autre chose ?
Réponse
Trop de publicités?Ce site question sur stackoverflow vous aidera probablement.
Je cite :
# for URL paths that begin with "/foo/bar/"
SetEnvIf Request_URI ^/foo/bar/ no-gzip=1
# for files that end with ".py"
<FilesMatch \.py$>
SetEnv no-gzip 1
</FilesMatch>
Vous pouvez donc essayer quelque chose comme :
<Directory /home/user/www>
SetEnv no-gzip 1
[...]
</Directory>