When I added this code to the apache vHost conf, the browser stopped “seeing” php files and simply says 404. The file exists and worked before.
When I try to revert the file and folder structure to what it was before, php functionality isn’t restored.
<VirtualHost *:80>
DocumentRoot /var/www/html/emsf
ServerName emsf.local
<Directory /var/www/html/emsf>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
<VirtualHost *:80>
DocumentRoot /var/www/html/latest
ServerName latest.local
<Directory /var/www/html/latest>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
New contributor
Christian Legere is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
5