Author: Mike Starke Date: Subject: .htaccess ignored
Yes, I checked the Apache FAQ, but I am still confused,
and it doesn't work.
Below is a sample portion of my access.conf file.
What I want to do is deny all access to a users
home directory unless there is a .htaccess file
which allows access.
<Directory />
deny from all
AllowOverride None
</Directory>
<Directory /var/www>
Options Indexes FollowSymLinks
AllowOverride None
order allow,deny
allow from <my firewall ip>
AuthType Basic
</Directory>