dockerized phpmyAdmin : custom php app not loading : the url was not found on the server

I’m using phpmyadmin docker image with apache and php already installed.

I can run phpmyadmin on localhost:8080 correctly and populate a database. So the php module is loaded correctly in apache.

But I have a php app installed in /var/www with different folders and it is not loading when i go to the corresponding adress (Support/index.php). I get an apache error:

phpmyadmin    | 192.168.0.1 - - [09/Jul/2022:09:11:10 +0000] "GET /Support/index.php HTTP/1.1" 404 490 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36"

Im new to apache as I usually use nginx. How can i configure it so it serves the php file correctly?

Thank you