Forum Moderators: phranque
SetEnv no-gzip
is equivalent.
And
SetEnvIf Request_URI \.flv$ no-gzip is eq. to the rewrite rule checking for .flv but without creating overhead; or, to avoid regular expressions completely by using a simple wildcard matching
<Files *.flv>
SetEnv no-gzip
</Files> One important thing about mod_rewrite - you can see that esp. on IRC - is to know when not to use the module. The intention of the module was not to replace all other directives for the cost of performance but for doing things other simple directives can't do.