On 10/25/07, Matt Brock <[EMAIL PROTECTED]> wrote:
> Hi.
>
> I'm applying some authentication across all of a site site using the
> following:
>
> <Location "/*">

The "*" is unnecessary.

>           AuthName "NAME"
>           AuthType Basic
>           AuthUserFile /usr/local/www/.htpasswd
>           AuthGroupFile /dev/null

Delete the above line.

>           require user USER
> </Location>
>
> However, there is one specific URL pattern that I need to make an
> exception for.

Listing the following AFTER the existing <Location> should work:

<Location /unrestricted-url>
Order deny,allow
Allow from all
Satisfy Any
</Location>

Joshua.

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to