Re: regex in locationmatch
Julian Wood wrote:
> So for Apache 1.3.x, I'm SOL trying to unprotect those particular
> documents?
You can try to use a more specific LocationMatch below
"^/tlcprojectswiki/index\.php/" using Satisfy any.
<LocationMatch "^/tlcprojectswiki/index\.php/">
require valid-user
.....
</LocationMatch>
<LocationMatch "^/tlcprojectswiki/index\.php/(Category|Public)">
Satisfy any
.....
</LocationMatch>
--
Robert
|