Konfiguration der virtuellen WAMP-Server-Hosts

OK, ich habe meinen Wamp installiert und kann meine virtuellen Hosts einfach nicht richtig einrichten.

Folgendes habe ich:

Wamp-Installationsverzeichnis:F:\wamp

Projektleitung:F:\www

# F:\wamp\bin\apache\apache2.4.2\conf\extra\httpd-vhosts.conf
<Directory "F:\www">
    AllowOverride AuthConfig FileInfo Indexes Limit Options
    Order Deny,Allow
    AllowOverride All
    Allow from all
</Directory>

NameVirtualHost 127.0.0.1
<VirtualHost 127.0.0.1>
    ServerName localhost
    DocumentRoot "F:\wamp\www"
</VirtualHost>

# Yes, it's a symfony2 project
<VirtualHost 127.0.0.1>
    DocumentRoot "F:\www\my_project\web"
    DirectoryIndex app_dev.php
    ServerName my_project
</VirtualHost>

hosts Datei von Windows ist konfiguriert und hat die notwendigen:127.0.0.1 project_name Linie eingeschlossen.

Apachehttpd.conf:

# Virtual hosts
Include conf/extra/httpd-vhosts.conf

Jetzt sagt mir der Browser Folgendes, wenn ich auf die URL zugreife:my_project/

Forbidden
You don't have permission to access / on this server.

Könnte mir jemand einen Hinweis geben, was hier los ist?

Antworten auf die Frage(1)

Ihre Antwort auf die Frage