My website is ready to be deployed and I am trying to set it up online.
Some informations:
- The host is OVH.
- It doesn't allow SSH, I have to send my files with FTP. No command line either.
- I want to be able to set up the website in a subdirectory:
/www/test
for now (my current website is still in/www
).
The problem:
When I open the URL my-website.com/test
, a Symfony exception tells me No route found for "GET /test/"
, which clearly means that Symfony doesn't know it is in a sub-directory.
How can I tell it?
EDIT:
I just realized it worked when I access my-website.com/test/web
.