I want to make reference to a variable called "foo" (with value "bar")
SetEnv foo bar
within a RewriteRule
RewriteRule ^([^/]*)/([^/]*)/$ /{foo}.php?p=$1&id=$2 [L]
so that it literally reads as:
RewriteRule ^([^/]*)/([^/]*)/$ /bar.php?p=$1&id=$2 [L]
How is this possible?