I need to get the final route of the url in twig
For example I have this url:
http://www.hackeruna.com/pagina
, I just need this part of the path /pagina
.
I need to get the final route of the url in twig
For example I have this url:
http://www.hackeruna.com/pagina
, I just need this part of the path /pagina
.
The way to get the current url in symfony
from Twig
is:
Relative url:
{{ app.request.pathinfo }}
Absolute URL:
{{ app.request.pathinfo }}
To solve my problem there is also the option:
{{ app.request.pathinfo }}