I am trying to get the standard info.php
<?php
phpinfo();
?>
to run on a Apache 2 server and a Ubuntu 16.04. machine. However, even after adding
<FilesMatch \.php>
SetHandler application/x-httpd-php
</FilesMatch>
to the configuration file /etc/apache2/apache2.conf and verifying that php7.0 has a .conf and a .load file in /etc/apache2/mods-enabled/, the info.php in /var/www/html is only downloaded, but does not show the intended content.
Does anyone have an idea what this is caused by?
Edit:Deleted the $ behind Filesmatch .php and also tried putting quotation marks around ".php", to no avail.