Heim > Artikel > Betrieb und Instandhaltung > Apache kann PHP nicht analysieren
Zuerst APACHE installieren
./configure --prefix=/usr/local/apache2 --enable-so --enable-module=so make make install
PHP installieren
./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache2/bin/apxs --with-config-file-path=/usr/local/lib --with-sybase=/opt/sybase/OCS-15_0/ --with-mysql --enable-dbase --enable-zip make install
Installieren Führen Sie nach Abschluss von PHP den folgenden Code aus:
cp php.ini-dist /usr/local/lib/php.ini
Fügen Sie AddType application/x-httpd-php .php zur Konfigurationsdatei httpd.conf in APACHE hinzu, starten Sie APACHE neu und derselbe Fehler tritt immer noch auf.
Lösung:
AddType application/x-httpd-php .php AddType application/x-httpd-php .php .phtml .php3 AddType application/x-httpd-php-source .phps
Empfohlenes Tutorial: Apache-Tutorial
Das obige ist der detaillierte Inhalt vonApache kann PHP nicht analysieren. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!