I want set some environment variable like this, eg.:
SetEnv SpecialPath "%{DOCUMENT_ROOT}/dir/"
but if i print SpecialPath
in path PHP, eg.:
$_SERVER['SpecialPath'];
the output is
%{DOCUMENT_ROOT}/dir/
the expected output is:
/var/www/dir/
the question is: how concatenate environment variable in htaccess?
env_module is enabled