Apache denying requests with VirtualHosts

Posted by Ross on Server Fault See other posts from Server Fault or by Ross
Published on 2010-10-16T23:38:30Z Indexed on 2011/01/17 18:54 UTC
Read the original article Hit count: 366

Filed under:
|

This is the error I get in my log:

Permission denied: /home/ross/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable

My VirtualHost is pretty simple:

<VirtualHost 127.0.0.1>
 ServerName jotter.localhost
 DocumentRoot /home/ross/www/jotter/public
 DirectoryIndex index.php index.html

 <Directory /home/ross/www/jotter/public>
  AllowOverride all
  Order allow,deny
  allow from all
 </Directory>

 CustomLog /home/ross/www/jotter/logs/access.log combined
 ErrorLog /home/ross/www/jotter/logs/error.log
 LogLevel warn
</VirtualHost>

Any ideas why this is happening? I can't see why Apache is looking for a .htaccess there and don't know why this should stop the request. Thanks.

© Server Fault or respective owner

Related posts about apache

Related posts about virtualhosts