.htaccess files ignored by apache?
yes I'm a newbie
somehow and somewhy my .htaccess and .htpasswd files are beeing ignored by my apache. the good thing is that if I try to open:
http://www.myurldot.com/.htaccess or .htpasswd
the files are not beeing showed
at least something.... but anyway apache goes on showing me the index.html file even if there is a user required :-(could you pls tell me the line I've to change in my httpd.conf?
# This controls which options the .htaccess files in directories can
# override. Can also be "All", or any combination of "Options", "FileInfo",
# "AuthConfig", and "Limit"
#
AllowOverride None
# AccessFileName: The name of the file to look for in each directory
# for access control information.
#
AccessFileName .htaccess
# Also, folks tend to use names such as .htpasswd for password
# files, so this will protect those as well.
#
<Files ~ "^\.ht">
Order allow,deny
Deny from all
</Files>
# override. Can also be "All", or any combination of "Options", "FileInfo",
# "AuthConfig", and "Limit"
#
AllowOverride None
# AccessFileName: The name of the file to look for in each directory
# for access control information.
#
AccessFileName .htaccess
# Also, folks tend to use names such as .htpasswd for password
# files, so this will protect those as well.
#
<Files ~ "^\.ht">
Order allow,deny
Deny from all
</Files>

