order directive


Purpose

The order directive affects the order in which deny and allow directives are evaluated within a Limit section.


Scope

This directive is only available within Limit sections.


Syntax

order ord

ord is one of the following:


Default

If no order is given, httpd assumes:

order deny,allow


Example

<Limit /u/Web>
order deny,allow
deny from all
allow from .ncsa.uiuc.edu
</Limit>
In the /u/Web directory, the server evaluates the deny directive first. So, everyone is denied. It then evaluates the allow directive, and decides to allow clients from .ncsa.uiuc.edu.


Return to access configuration overview

httpd@ncsa.uiuc.edu