vote up 1 vote down star

Is it possible using .htaccess or other apache powers to set a custom server value in the php array $_SERVER.

for example

if($_SERVER['is_special']) {
    echo "Yeah for us!";
} else {
    echo "No you fool!";
}

I realize I ask a lot of questions that the answer is no so feel free to say so.

flag

73% accept rate

2 Answers

vote up 4 vote down check

Try the SetEnv directive:

SetEnv is_special foobar
link|flag
There it is! 'is_special' => string 'foobar' (length=6) – SeanDowney Mar 4 at 20:36
Note that you need mod_env to do this. – Gumbo Mar 4 at 20:37
Try and avoid polluting the $_SERVER variable. I would recommend creating some sort of Registry class if you want to store global data. – zodeus Mar 4 at 21:02
vote up 0 vote down

The short answer is no, however what exactly are you trying to accomplish?

link|flag
I basically need to pass data from an htaccess file to php – SeanDowney Mar 4 at 20:26
What information? – cletus Mar 4 at 20:27
I'm symbolically linking a home directory to another folder in which displays a webpage. I'm doing this rather than changing the document root via apache which is ugly. Since php doesn't know about the sym link I was hoping to pass in a custom var to php and let it know it's original folder. – SeanDowney Mar 4 at 20:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.