Questa è una domanda interessante e poiché non è spiegata in modo molto esplicito nella documentazione risponderò a questa domanda passando attraverso il codice sorgente di mod_rewrite ; dimostrando un grande vantaggio dell'open source .
Nella sezione superiore individuerai rapidamente le definizioni utilizzate per denominare questi flag :
#define CONDFLAG_NONE 1<<0
#define CONDFLAG_NOCASE 1<<1
#define CONDFLAG_NOTMATCH 1<<2
#define CONDFLAG_ORNEXT 1<<3
#define CONDFLAG_NOVARY 1<<4
e la ricerca di CONDFLAG_ORNEXT conferma che viene utilizzato in base all'esistenza del flag [OR] :
else if ( strcasecmp(key, "ornext") == 0
|| strcasecmp(key, "OR") == 0 ) {
cfg->flags |= CONDFLAG_ORNEXT;
}
La prossima occorrenza del flag è l' implementazione effettiva in cui troverai il ciclo che attraversa tutte le RewriteConditions di una RewriteRule, e ciò che fondamentalmente fa è (spogliato, commenti aggiunti per chiarezza):
# loop through all Conditions that precede this Rule
for (i = 0; i < rewriteconds->nelts; ++i) {
rewritecond_entry *c = &conds[i];
# execute the current Condition, see if it matches
rc = apply_rewrite_cond(c, ctx);
# does this Condition have an 'OR' flag?
if (c->flags & CONDFLAG_ORNEXT) {
if (!rc) {
/* One condition is false, but another can be still true. */
continue;
}
else {
/* skip the rest of the chained OR conditions */
while ( i < rewriteconds->nelts
&& c->flags & CONDFLAG_ORNEXT) {
c = &conds[++i];
}
}
}
else if (!rc) {
return 0;
}
}
Dovresti essere in grado di interpretarlo; significa che OR ha una precedenza più alta e il tuo esempio porta davvero a if ( (A OR B) AND (C OR D) )
. Se, ad esempio, avessi queste condizioni:
RewriteCond A [or]
RewriteCond B [or]
RewriteCond C
RewriteCond D
sarebbe interpretato come if ( (A OR B OR C) and D )
.