Forum Moderators: phranque
How this may affect you is if you use two different modules to set and test variables. The code
setEnv foo bar
... (additonal logic)
RewriteCond %{ENV:foo} ^bar$
RewriteRule ^.*$ /isbar.php?why=foo
may or may not work, depending on whether mod_setenv or mod_rewrite processes the code first. A better solution might be:
RewriteRule .* - [E=foo:bar]
... (additional logic)
RewriteCond %{ENV:foo} ^bar$
RewriteRule ^.*$ /isbar.php?why=foo