我在apache配置中有两个环境变量,我想将它们连接成一个新的环境变量。这可能吗?
我意识到这不起作用,但它表明我正在追求的那种东西:
SetEnv one foo
SetEnv two bar
SetEnv three one+two
...然后'三'将具有值“foobar”
答案 0 :(得分:4)
使用带有两个通配符反向引用的mod_rewrite正则表达式来访问环境变量并连接字符串:
#This will be true for any user agent
RewriteCond %{HTTP_USER_AGENT} ^.*
#Replace / with / and set the new environment variable
RewriteRule /(%{ENV:one})*(%{ENV:two})* / [E=three:$1$2]