I have create a folder named img which contains some images. However, when I try to access it in the url, such as:
http://mydomain.dev/app_dev.php/img/1.png
it doesn't work
Symfony returns me an error saying: No route found for "GET /img/1.png"
However, if I do the following:
http://mydomain.dev/img/1.png
it works !
I am using Apache and running it on Mac OSX Mavericks.
How can I access it in app_dev.php even if it is not a route but a file ?