On May 5, 2016 3:38 PM, "Haim Ari" <[email protected]> wrote: > > This does not work either: > > redirect location http://example.com/going-wild if !do_not_redirect or !cloud_a !cloud_b
Your logic is flawed in both cases. Logically, if (a or b or c) is true, then (!a and !b and !c) is false... so you want to AND *all* the negations, like this: redirect location http://example.com/going-wild if !do_not_redirect !cloud_a !cloud_b In other words, redirect only when all of the acls do not match. If one or more of them does match, the redirect does not occur, which is what you appear to be trying to do.

