Rumah  >  Artikel  >  pembangunan bahagian belakang  >  linux php5.4 安装教程

linux php5.4 安装教程

藏色散人
藏色散人asal
2020-08-24 09:31:032870semak imbas

linux php5.4安装方法:首先安装apache并解压php;然后进行编译安装;接着将“php.ini-production”复制到lib目录下并改名为“php.ini”;最后修改“httpd.conf”文件即可。

linux php5.4 安装教程

推荐:《PHP视频教程

linux 下安装 php5.4.4

第一步:安装apache 

 

第二步:解压php

[root@test02 software]# tar zxvf php-5.4.4.tar.gz

 

第三步:编译安装

 

[root@test02 php-5.4.4]# ./configure --prefix=/usr/local/php5.4 --with-apxs2=/usr/local/httpd2.2.22/bin/apxs --with-mysql

 

这样会在 /usr/local/httpd2/modules 目录下生成一个 libphp5.so, 并且在httpd.conf 中会自动加上

 

LoadModule php5_module modules/libphp5.so 这句

 

复制php解压目录下的php.ini-production 到 /usr/local/httpd2/lib 目录下,并改名为 php.ini

 

第四步:修改httpd.conf 让apache 可以认识php的扩展名

 

在httpd.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&#39;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>

 

重启apache

Atas ialah kandungan terperinci linux php5.4 安装教程. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!

Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn