Wie man Windows Apache konfiguriert, um PHP auszuführen.
Fügen Sie Folgendes zu httpd.conf hinzu und starten Sie neu:
# load module
LoadModule php7_module c:/wamp64/bin/php/php7.0.10/php7apache2_4.dll
# .php file
<FilesMatch "\.php$">
AddHandler php7-script .php
AddType application/x-httpd-php .php
</FilesMatch>
# php.ini
PHPIniDir "c:/php"
Neustart
cd C:\Apache24\bin
httpd -k restart
Testcode
<?php
echo 'index.php' ;