Apache - Limitations of logically linking RewriteCond in 2.2/2.4
问题 These days I read a very interesting post about the precedence of [OR] over the implicit [AND] . I really liked the original question as well as highly appreciated answer. I just recently stumbled upon further problems concerning this topic. The problems start as soon as you try to express the following: RewriteCond A RewriteCond B RewriteCond C RewriteRule ... with A OR (B AND C) . Where ever you place the [OR] , it won't work: #resolves to (A OR B) AND C RewriteCond A [OR] RewriteCond B