可以在virtualhost配置中读取.htaccess中设置的值吗?

时间:2017-10-13 12:31:33

标签: apache .htaccess mod-rewrite

我可以在htaccess文件中设置一个值并在VirtualHost中使用该值吗?

htaccess的:

SetEnv FOO bar

虚拟主机:

#...
RewriteCond %{ENV:FOO} ^bar$
# ... something

我认为这至少是不可能的,但有没有办法将.htaccess中的值传递给virtualhost配置?如果有另一种方式,它不一定需要是RewriteCond的环境变量。

1 个答案:

答案 0 :(得分:0)

不幸的是,这是不可能的。当apache服务启动时会读取VirtualHost配置,而按需读取.htaccess文件。