Windows Apache PHP-Konfiguration Ausführen

Windows Apache zum Ausführen von PHP konfigurieren

Wie man Windows Apache konfiguriert, um PHP auszuführen. Fügen Sie Folgendes zu httpd.conf hinzu und starten Sie neu.

Shou Arisaka
1 Min. Lesezeit
19. Okt. 2025

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' ;

Referenz

https://www.adminweb.jp/apache/php/index1.html

Diesen Artikel teilen

Shou Arisaka 19. Okt. 2025

🔗 Links kopieren