Maison > Article > développement back-end > Tutoriel d'installation de Linux php5.4
Méthode d'installation Linux php5.4 : installez d'abord Apache et décompressez php ; puis compilez et installez ; puis copiez "php.ini-production" dans le répertoire lib et renommez-le en "php.ini" ; Le fichier "httpd.conf" suffit.
Recommandé : "Tutoriel vidéo PHP"
Installer php5.4.4 sous Linux
Étape 1 : Installer Apache
Étape 2 : Décompresser php
[root@test02 software]# tar zxvf php-5.4.4.tar.gz
Étape 3 : Compiler et installer
[root@test02 php-5.4.4]# ./configure --prefix=/usr/local/php5.4 --with-apxs2=/usr/local/httpd2.2.22/bin/apxs --with-mysql
Cela générera un libphp5.so dans le répertoire /usr/local/httpd2/modules, et
LoadModule php5_module modules/libphp5.so Copiez php.ini-production du répertoire de décompression php dans le répertoire /usr/local/httpd2/lib Téléchargez-le et renommez-le à php.ini Étape 4 : Modifier httpd.conf pour qu'Apache puisse reconnaître l'extension php dans httpd Ajouter à la fin du .conf<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>Redémarrer Apache
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!