安装PHP7.1+apache2.4.23
Posted 种花家的大老师
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安装PHP7.1+apache2.4.23相关的知识,希望对你有一定的参考价值。
http://archive.apache.org/dist/apr/apr-util-1.5.4.tar.gz 下载apr-util
make && make install
先解压(略)
cp /usr/local/apache/bin/apachectl /etc/rc.d/init.d/
mv /etc/rc.d/init.d/apachectl /etc/rc.d/init.d/httpd
chkconfig --add httpd #所有开机模式下自启动
chkconfig httpd on #345开机模式下自启动
先解压(略)
出现“/replace/with/path/to/perl/interpreter: bad interpreter: No such file or
#vi /usr/local/apache/bin/apxs
第一行的#!/replace/with/path/to/perl/interpreter -w,找到你perl的安装位置,如果不清楚,可以用which perl找到,一般在/usr/bin/perl ,于是将第一行改为:#!/usr/bin/perl -w. 再运行php的configure, 一切正常!
看是否搜索到:LoadModule php7_module modules/libphp7.so
如果没有搜索到(一般都是可以搜索到的),就将这段指令添加到httpd.conf配置文件中,使apache可以加载libphp7.so模块,并进行php文件的解析。
在httpd.conf配置文件中再添加一段指令:
<FilesMatch "\\.ph(p[2-6]?|tml)$">
SetHandler application/x-httpd-php
</FilesMatch>
这段指令告诉apache,碰到文件名以
.php, .php2, .php3, .php4, .php5, .php6或phtml结尾的文件使用
libphp7.so模块进行解析
:wq
进行保存退出。
cd /usr/local/apache/htdocs
按 i 键进入编辑模式,添加:
<?php
phpinfo();
?>
按Esc键回到命令模式,保存退出:
:wq
以上是关于安装PHP7.1+apache2.4.23的主要内容,如果未能解决你的问题,请参考以下文章
环境搭建 之 Windows10 安装 Apache2.4.23