htaccess - How to use Basic Authentication for everything but one URL?
Hi,
I can't seem to figure this out. Here's what I'm trying so far in my
htaccess file but I still get prompted for a password when I visit the
url I want to be openly available. Please help.
AuthName "ideaspace"
AuthType Basic
AuthUserFile /private/.htpasswd
require valid-user
<files ".htaccess">
order allow,deny
deny from all
</files>
<FilesMatch "/index.php?title=Special:Recentchanges&feed=rss">
allow from all
</FilesMatch>
|