Apache дает мне 403 Access Forbidden, когда DocumentRoot указывает на два разных диска

Я получаю 403 доступ запрещен при попытке открыть страницу под vhost, где корень документа находится на другом диске, чем Apache. Я установил с помощью релиза apachefriends. Это мой файл httpd-vhosts.conf:


NameVirtualHost 127.0.0.1<p></p>

<p><VirtualHost 127.0.0.1>
  ServerName foo.localhost
  DocumentRoot "C:/xampp/htdocs/foo/public"
</VirtualHost></p>

<VirtualHost 127.0.0.1> ServerName bar.localhost DocumentRoot "F:/bar/public" </VirtualHost>

When opening bar.localhost in my browser, Apache is giving me 403 Access Forbidden. I tried setting lots of different access rights, even full rights to everyone, but nothing I tried helped.

Edit: Thanks! For future reference, add 'Options indexes' within to show directory indexes.