How can I remove \'web/app_dev.php/\' from my url when I want my symfony website to go live?
This is the default url during development,
http://{loca
If you have access to the deployment server, from terminal you can use:
php app/console cache:clear --env=prod
and this will clear the prod cache and you will be able to use the standard route.
But if you are deploying the application on hosting where you haven't access to terminal, need to find the app/cache/*
and app/logs/*
and remove their content and after add the proper rights (766|777) for the folders.