Some interesting findings from web-dev land…
I had a whole site that was .htaccess password protected using Apache authentication:
12AuthType Basic
etc etc
I wanted to allow public access to a sub directory. I had to Google it for quite a while and finally worked it out. I added this to the child directory .htaccess file:
1Satisfy any
The password prompt is now gone for that [...]