Common fault is
In Apache2\conf (or your directory)edit httpd.conf file looking for AllowOverride, the default of this is none, change it to All.
The default is 'very restircitive", I am not sure of the security implications, perhaps someone more with a few more smarts can answer...anyway this is the full section that comes with Apache
#
# 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
</Directory>
Hope it helps...
|