linux php5.4 Installationsmethode: Zuerst Apache installieren und PHP dekomprimieren; dann kompilieren und installieren; dann „php.ini-produktion“ in das lib-Verzeichnis kopieren und schließlich „httpd.conf“ ändern; Datei.
Empfohlen: „PHP-Video-Tutorial“
Installieren Sie php5.4.4 unter Linux
Schritt 1: Apache installieren
Schritt 2: Entpacken. php
[root@test02 software]# tar zxvf php-5.4.4.tar.gz
Dritter Schritt: Kompilieren und installieren
[root@test02 php-5.4.4]# ./configure --prefix=/usr/local/php5.4 --with-apxs2=/usr/local/httpd2.2.22/bin/apxs --with-mysql
Dadurch wird eine libphp5.so im Verzeichnis /usr/local/httpd2/modules generiert und
LoadModule php5_module module/libphp5 wird automatisch zu httpd.conf hinzugefügt
Kopieren Sie php.ini-produktion im PHP-Dekomprimierungsverzeichnis in das Verzeichnis /usr/local/httpd2/lib und benennen Sie es in php.ini um
Schritt 4: Ändern Sie httpd.conf, um Apache zuzulassen. Das ist möglich Erkennen Sie die Erweiterung von PHP
Fügen Sie
<FilesMatch \.php$> SetHandler application/x-httpd-php </FilesMatch> Or, if we wanted to allow .php, .php2, .php3, .php4, .php5, .php6, and .phtml files to be executed as PHP, but nothing else, we'd use this: <FilesMatch "\.ph(p[2-6]?|tml)$"> SetHandler application/x-httpd-php </FilesMatch> And to allow .phps files to be handled by the php source filter, and displayed as syntax-highlighted source code, use this: <FilesMatch "\.phps$"> SetHandler application/x-httpd-php-source </FilesMatch>
am Ende von httpd.conf hinzu
Starten Sie Apache neu
Das obige ist der detaillierte Inhalt vonTutorial zur Linux-PHP5.4-Installation. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!