I couldn't think of a good title for this. Basically I have basic auth that covers the whole site from /, but I want urls with certain parameters to be excluded from authentication.
Example: do not authenticate if there is a parameter named "zzz"
Protected
http://example.com/
http://example.com/?xxx=xxx&yyy=yyy
Not Protected
http://example.com/?zzz=zzz
http://example.com/?xxx=xxx&zzz=zzz
Tried doing something like
<LocationMatch "/zzz/">
Allow from all
Satisfy any
</LocationMatch>
with now avail. From what I understand parameters do not seem to be seen by the LocationMatch, is this correct? or am I doing it all wrong?