# Only allow access to this content during business hours
<Directory "/foo/bar/business">
- Require expr %{TIME_HOUR} -gt 9 && %{TIME_HOUR} -lt 17
+ Require expr "%{TIME_HOUR} -gt 9 && %{TIME_HOUR} -lt 17"
</Directory>
</highlight>
</section>
decisions on arbitrary expressions.</p>
<highlight language="config">
- Require expr %{TIME_HOUR} -ge 9 && %{TIME_HOUR} -le 17
+ Require expr "%{TIME_HOUR} -ge 9 && %{TIME_HOUR} -le 17"
</highlight>
<p>The syntax is described in the <a href="../expr.html">ap_expr</a>
<p>Then a request for <code>http://www.example.com/fish/</code> will
cause httpd to attempt to serve the file
<code>/var/www/html/fish/index.html</code>. In the event that
- that file didn't exist, it will next attempt to serve file file
+ that file does not exist, it will next attempt to serve the file
<code>/var/www/html/fish/index.php</code>.</p>
- <p>If neither of these files existed, the next step would be to
+ <p>If neither of these files existed, the next step is to
attempt to provide a directory index, if
- <module>mod_autoindex</module> were loaded and configured to permit
+ <module>mod_autoindex</module> is loaded and configured to permit
that.</p>
<p>httpd is also capable of <a href="vhosts/">Virtual