#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the "default" to be a very restrictive set of
# features.
#
<Directory />
Options FollowSymLinks
AllowOverride All
Order deny,allow
Deny from all
</Directory>
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride All
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
#
# "C:/xampp/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
<Directory "C:/xampp/cgi-bin">
AllowOverride All
Options None
Order allow,deny
Allow from all
</Directory>
As you can see, all three lines which containt AllowOverride are set to all in apache/http.conf
I also tried to test it with (un)commenting the following line in http.conf
LoadModule autoindex_module modules/mod_autoindex.so # don't load because of mod_autoindex_color.so
LoadModule autoindex_color_module modules/mod_autoindex_color.so
Uncommenting both makes my Apache unable to start, having both commeted also prevents my Apache from starting.
Edited by Toyz, 11 November 2008, 09:38.