我可以在 apache 配置中连接环境变量吗?
我在 apache 配置中有两个环境变量,我想将它们连接成一个新的环境变量。这可能吗?
我意识到这不起作用,但它展示了我所追求的东西:
SetEnv one foo
SetEnv two bar
SetEnv three one+two
......然后“三”将具有值“foobar”
I have two environment variables in apache config, I want to concatenate them into one new environment variable. Is this possible?
I realise this doesn't work, but it demonstrates the sort of thing I'm after:
SetEnv one foo
SetEnv two bar
SetEnv three one+two
...and then 'three' would have the value "foobar"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用带有两个通配符反向引用的 mod_rewrite 正则表达式来访问环境变量并连接字符串:
Use a mod_rewrite regular expression with two wildcard backreferences to access the environment variables and concatenate the strings: