- 论坛徽章:
- 0
|
i have a problem in apache .htaccess , i using RH9 and apache 2.0xx
my following setting:
httpd.conf
<Directory "/home/*/html">;
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>;
after restart httpd service
/home/test/html/.htaccess
Authtype Basic
AuthName "hello"
AuthUserFile /home/test/html/.passwd
<Limit GET >;
require user download
</Limit>;
/home/test/html/.passwd
htpasswd -c .passwd download
when i acccess http://localhost/~test/
type login download and password
the error message say Authentication required!
what's my problem ? pls help |
|