Recentemente instalei o xampp e quando meu arquivo html chama um script php, o firefox faz o download do script em vez de executá-lo. Eu tenho o módulo php5 instalado e é assim que o meu arquivo apache hhtpd.conf se parece:
Alias /bitnami/ "/opt/lampp/apache2/htdocs/"
Alias /bitnami "/opt/lampp/apache2/htdocs"
LoadModule php5_module modules/libphp5.so
<IfModule mod_mime.c>
AddType application/x-httpd-php .php
AddType application/x-httpd-php .phtml
AddType application/x-httpd-php .php3
AddType application/x-httpd-php .php4
AddType application/x-httpd-php .php4
AddType application/x-httpd-php .php5
AddType application/x-httpd-php .html
AddType application/x-httpd-php-source .phps
</IfModule>
<FilesMatch \.php$>
SetHandler application/x-httpd-php
</FilesMatch>
<Directory "/opt/lampp/apache2/htdocs">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
primeira vez tentando configurar o apache não tem certeza do que está acontecendo enter code here