I changed /etc/httpd/conf.d/bluequartz.conf as below:
<Directory /home/.sites/>
Options Indexes FollowSymLinks Includes MultiViews
#AllowOverride AuthConfig Indexes Limit FileInfo <- commented this line out
AllowOverride All <- added this line
Below that was this:
# ignore .ht*
<Files ".ht*">
deny from all
</Files>
Doesn't that try to disallow .htaccess files in the site directories?
What considerations are there if AllowOverride is set to All instead of the
way it was?
-----Original Message-----
From: Elmer Tolentino [mailto:elmer (at mark) webmerch.com]
Sent: Thursday, May 04, 2006 6:39 PM
To: dmobley (at mark) uhostme.net
Subject: Re: [coba-e:05027] HTACCESS
<Directory "/home/.sites/">
Options Indexes FollowSymLinks Includes MultiViews
AllowOverride All
</Directory>
In any apache conf files or you can create one in
/etc/httpd/conf.d/htaccess.conf with the above content...