Let's say I have a Symfony webapp and it is in a subfolder of my webroot
path/to/root/<subfolder>/Symfony/
So if I would want to call my page I have to enter
http://host.tld/<subfolder>/Symfony/web
But as you can imagine I would like everyone just to call
http://www.host.tld/
I know that I can use the webserver's settings (e.g. define root directory, set alias etc.). Thus I derive two questions:
Where do I tell Symfony that this is the base of all to be created links? And
Does Symfony provide a native function or configuration, where I can set this up without having to change my webserver's configuration?