Nope. Although technically I want "^/foo", right? Neither works anyway.

Is there any way I can trace what Apache is doing like I can with RewriteLog? I've tried setting the LogLevel to debug, but that doesn't give me any particularly helpful info.

Hmm...so this ugly thing actually seems to work:

  <LocationMatch "^/($|[^f][^o][^o][^/])">
    AuthType Basic
    AuthName "Development Site"
    AuthUserFile /etc/apache2/auth/dev-passwd
    Require valid-user
  </LocationMatch>

sigh,

-b


Bill Jones wrote:
One last try?

# Match SubString
<LocationMatch "/foo">
 Order allow,deny
 Allow from all
</LocationMatch>

???

---------------------------------------------------------------------
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