Yes, I recreated this on a clean install of XAMPP on Win7 and this definitely is a bug, thanks for pointing this out. There are 2 ways to make it right:
The first and simplest one is to use the address
http://localhost/symfony/web , as it is shown in the figures. I hope more readers will be able to spot it :)
The second one (and this is how âit should be doneâ) is to edit the httpd.conf in Apache configuration and add the following alias:
Code:
Alias /symfony "C:\xampp\htdocs\symfony\web"
<Directory "C:\xampp\htdocs\symfony\web">
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
Then you can access the hello world module with
http://localhost/symfony .
We made the code review on a server configured this way and thatâs why the error somehow slipped our attention ;)