.htaccess disabling deflate for one particular php file

Solution:

I would expect something like this to work:

<Files *.php>
     SetOutputFilter DEFLATE
</Files>
<Files youronefile.php>
     SetOutputFilter NONE (or something)
</Files>

If that doesn’t work, remember to use <FilesMatch> with your regular expression 🙂