Hi.
I am in the httpd file in the Apache folder and need to change the
part that says AllowOverride from None to All, so that when I create a
..htaccess file it wont ignore it.
However in the httpd file there are a few different sections where it
has found the AllowOverride code.
Do I change all of these sections below or just one of them?
Thanks
John
- - -
<Directory />
Options FollowSymLinks
AllowOverride 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
- - -
Alias /icons/ "C:/ApacheGroup/Apache2/icons/"
<Directory "C:/ApacheGroup/Apache2/icons">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
- - -
AliasMatch ^/manual(?:/(?:de|en|fr|ja|ko|ru))?(/.*)?$
"C:/ApacheGroup/Apache2/manual$1"
<Directory "C:/ApacheGroup/Apache2/manual">
Options Indexes
AllowOverride None
Order allow,deny
Allow from all
<Files *.html>
SetHandler type-map
</Files>
- - -
<Directory "C:/ApacheGroup/Apache2/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
- - - |