1

This doesnt seem to work in .htacces:

SetEnv FOO %{ENV:BASH}
qodeninja
  • 2,753
  • 10
  • 32
  • 33

1 Answers1

0

It depends what you want to do.

In order to pass them to the CGI scripts, you can access the environment variables with PassEnv.

With mod_rewrite, you can access them with the %{ENV:blah} form.

There are no other ways to access the Unix environment variables.

To manipulate Apache environment variables, you may want to check the documentaton

Dan Andreatta
  • 5,454
  • 2
  • 24
  • 14