6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ApacheのSetEnvの落とし穴

Posted at

以下は期待通りに動かない。

SetEnv hogehoge

Order allow,deny
Allow from env=hogehoge

何故ならSetEnvでセットしたhogehogeが直後のAllowディレクティブで参照できないから。
しかし、以下は期待通りに動く。

SetEnvIf Request_URI ".*" hogehoge

Order allow,deny
Allow from env=hogehoge

SetEnvとSetEnvIfではセットした変数へアクセスできる場所に違いが有る。
前者では直後のAllowディレクティブから参照できないが後者ならできる。
バグか仕様かわからないが気持ちが悪い。

環境変数をセットした場所と、その環境変数へアクセスできる場所との関係は以下のサイトが参考になる。
https://turboflash.wordpress.com/2010/05/27/apache-environment-variables-visibility-with-setenv-setenvif-and-rewriterule-directives/

6
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?