LoginSignup
21
18

More than 5 years have passed since last update.

RewriteCondのANDとORの優先順位

Posted at

そもそもそんなのが必要なRewrite設定を書く必要があるシチュエーションを避けたいって話もあるが、必要なときもあるので覚書として書いとく。

ORの方がANDより強い

結論から言うと以上。

例えば

↓これは (A or B or C) and D の意味。

RewriteCond A [OR]
RewriteCond B [OR]
RewriteCond C
RewriteCond D
RewriteRule xxx

↓これは (A or B) and (C or D) の意味。

RewriteCond A [OR]
RewriteCond B
RewriteCond C [OR]
RewriteCond D
RewriteRule xxx
21
18
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
21
18