Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
Hi Jassim,
A possible solution is to create an Azure Linux VM an install PHP (Apache).
Quickstart: Create a Linux virtual machine in the Azure portal
https://learn.microsoft.com/en-us/azure/virtual-machines/linux/quick-create-portal?tabs=ubuntu
Install and Configure Apache
https://ubuntu.com/tutorials/install-and-configure-apache#1-overview
Once you have done this, you should create a vHost for each domain you want to host:
How To Set Up Apache Virtual Hosts on Ubuntu 20.04
https://www.digitalocean.com/community/tutorials/how-to-set-up-apache-virtual-hosts-on-ubuntu-20-04
You can create a vHost per directory you have created (meaning each directory is its own domain root). Then of course, point your DNS (domain) to the Azure VM's Public Static IP address.
If this is helpful please accept answer.