Configuration apache et repértoire
Bonjour.
Je suis sous windows et possède la dernière version de wamp.
Dans C:\wamp\www\symfony1.1.4 j'ai mon projet avec à l'intérieur les répertoires :apps,cache,plugin,web,lib etc.
Quand j'accède à mon projet par cette url http://127.0.0.1/symfony1.1.4/web/index.php je n'ai aucune image et il y a marqué project setup successfull.
Dans mon httpd.conf j'ai donc ajouté le code ci-dessous comme marqué sur la doc symfony.
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| <VirtualHost *:80>
DocumentRoot "C:\wamp\www\symfony1.1.4\web"
DirectoryIndex index.php
<Directory "C:\wamp\www\symfony1.1.4\web">
AllowOverride All
Allow from All
</Directory>
Alias /sf "C:\wamp\www\symfony1.1.4\lib\vendor\symfony\data\web\sf"
<Directory "C:\wamp\www\symfony1.1.4\lib\vendor\symfony\data\web\sf">
AllowOverride All
Allow from All
</Directory>
</VirtualHost> |
A partir de ce moment la, si j'accède à la même url j'ai enfin les images symfony qui apparaissent mais j'ai un
Oops! Page Not Found
The server returned a 404 response.
Vous pouvez m'aider?
Merci.