Require expr %{TIME_HOUR} -ge 9 && %{TIME_HOUR} -le 17
</highlight>
+ <highlight language="config">
+<RequireAll>
+ Require expr "!(%{QUERY_STRING} =~ /secret/)"
+ Require expr "%{REQUEST_URI} in { '/example.cgi' }"
+</RequireAll>
+ </highlight>
+
+ <highlight language="config">
+ Require expr "!(%{QUERY_STRING} =~ /secret/) && %{REQUEST_URI} in { '/example.cgi' }"
+ </highlight>
+
<p>The syntax is described in the <a href="../expr.html">ap_expr</a>
documentation.</p>