我可以在 apache 配置中连接环境变量吗?

发布于 2025-01-08 01:14:40 字数 192 浏览 1 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眉黛浅 2025-01-15 01:14:40

使用带有两个通配符反向引用的 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]

Use a mod_rewrite regular expression with two wildcard backreferences to access the environment variables and concatenate the strings:

#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]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文