How to create path to file in web directory in Symfony/Twig ?
Doing this way:
<a href="files/1.jpg">1</a>'
add
files/1.jpg to opened url http://localhost/documents/, so results in http://localhost/documents/files/1.jpg
Doing this way:
{{ asset('files/1.jpg') }}
generate:
/files/1.jpg
I want:
http://localhost/web/files/1.jpg