I noticed when I use RewriteEngine and SetEnv, my Environment Variables get REDIRECT_ before their names.
eg:
I have the following .htaccess:
RewriteEngine on
RewriteRule (.*) /test.php [L]
SetEnv test111=333
it will not be there the apache environment variable test111 like I wanted, but it will be REDIRECT_test111
how can I avoid it?
I wanna have my vars with the name I specified.