I have a symfony backend installed on my server and in the symfony/web folder I have created a new folder "app" and there is an index.html. If I call https://example.com/app/ I'm getting 404 and with https://example.com/app/index.html it is working. I have tried to change the DirectoryIndex in the symfony .htaccess from this:
DirectoryIndex app.php
To this:
DirectoryIndex app.php index.html
But it is still not working. How can I do it that if I call example.com/app/ the index.html will be opened (just for that folder to not destroy the symfony settings)?
Easiest way to do it:
But it will be
/app/index.html
, not just/app/
.