Hi,
I want to restrict access to a directory to special users using password
protection. After I added the following lines into my virtual host
container, access is restricted to "http://wagner/geheim/", but it keeps on
beeing unrestricted to "http://wagner/geheim".
How can I change the behavior to be equal for both, URLs with and without
trailing slashes???
Thanks,
Markus
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory "d:/svr/wagner/pub">
Options Indexes FollowSymLinks
Order allow,deny
Allow from all
</Directory>
<Directory "d:/svr/wagner/pub/secret">
AuthType Basic
AuthName "Restricted Directory"
AuthUserFile d:/svr/wagner/pwd/pwd.txt
# require valid-users
require user mueller
</Directory>