Apache
Learn how to configure an Apache web server (eg., XAMPP, LAMP, MAMP, WAMP).
To configure the Apache web server, you can use the following example to configure:
<VirtualHost *:80>
DocumentRoot /var/www/html/my-app
<Directory /var/www/html/my-app>
AllowOverride All
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
It is possible to use Inphinit as an directory in Apache (e.g., http://localhost/my-app/), simply by installing or moving the project to the Apache folder, as shown in these examples:
/var/www/html/my-appC:\xampp\htdocs\my-appC:\wamp\www\my-app