qodeninja Asked: 2010-04-26 22:12:06 +0800 CST2010-04-26 22:12:06 +0800 CST 2010-04-26 22:12:06 +0800 CST How do you access an httpd.conf Environment variable in .htaccess? 772 This doesnt seem to work in .htacces: SetEnv FOO %{ENV:BASH} apache-2.2 environment-variables .htaccess 1 Answers Voted Best Answer Dan Andreatta 2010-04-27T13:14:13+08:002010-04-27T13:14:13+08:00 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
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