Advanced .htaccess passwording?
I know you can password protect an entire directory, but what I want to do is a little more complicated, I am not sure whether it is possible or not...I am password protecting a dir with the following in a .htaccess
AuthUserFile /home/sites/site12/passwords/.htpasswd
AuthGroupFile /dev/null
AuthName "Access to this area is restricted"
AuthType Basic
Require valid-user
What I have is 10 files in that directory... 6 of them should be accessible by everyone, but each of the other pages 4 pages should only be accessible by one specific user (a different user for each page)
Is it possible to password a page rather than a whole dir without resorting to code?
I would also like to have a different AuthName for each of the 4 user specific pages although this isnt essential
Thanks
Jim