vote up 0 vote down star

Is this how to use AND, OR for RewriteCond on Apache?

rewritecond A [or]
rewritecond B
rewritecond C [or]
rewritecond D
RewriteRule ... something

becomes if ( (A or B) and (C or D) ) rewrite_it.

So it seems like "OR" is higher precedence than "AND"? Is there a way to easily tell, like in the (A or B) and (C or D) syntax?

flag

24% accept rate

1 Answer

vote up 0 vote down

You’ll probably need to convert it into disjunctive normal form:

  (A or B) and (C or D)
= (A and (C or D)) or (B and (C or D))
= (A and C) or (A and D) or (B and C) or (B and D)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.