8 Sep
2006
8 Sep
'06
19:48
I think that I should change something below, but what? ################# <Directory /> Options None AllowOverride None Order deny,allow Deny from all </Directory>
# use .htaccess files for overriding, AccessFileName .htaccess # and never show them <Files ~ "^\.ht"> Order allow,deny Deny from all </Files> ######################
"AllowOverride None" means, "completely ignore everything in the .htaccess file". So Order deny,allow Deny from all is the access control in place. Try changing the AllowOverride line to read AllowOverride Limit (per http://httpd.apache.org/docs/2.0/mod/core.html#allowoverride)