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)
HI Ian et al.. Thanks, I'll give this a try in the morning! JIM On Friday 08 September 2006 21:48, Marlier, Ian wrote:
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)
-- Jim Hatridge Linux User #88484 ------------------------------------------------------ WartHog Bulletin Info about new German Stamps http://www.fuzzybunnymilitia.org/~hatridge/bulletin/index.php Viel Feind -- Viel Ehr' Anti-US Propaganda stamp collection http://www.fuzzybunnymilitia.org/~hatridge/collection/index.php
participants (2)
-
James Hatridge
-
Marlier, Ian