I use Symfony 2.7 with the internal web server (installed with composer). I want to use different resources (css, js, images, fonts) in my twig files with a path like this
<link href="/css/style.css" rel="stylesheet">
In this case I get an error message: No route found for "GET /css/style.css"
I copied the resources to the web folder /web/css etc. so the files should be in the right place. How can I configure the routing that it picks up the resources without an error?
Thanks
Bernhard