How can I access "web" folder from config.yml in a symfony2 app ? I have tried %web%, %base_dir%, %asset_dir% and am running into a brick wall.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You can access resources in your web directory using twig's asset() function.
See http://symfony.com/doc/current/book/templating.html#linking-to-assets for more details. I think you'll want to avoid setting local paths in your config/parameters file, try and keep everything as dynamic as possible. |
|||||
|
|
In If you want a handy shortcut, in your
Then in |
|||
|
|