本文主要是介绍Centos 7搭建LAMP环境遇到的apache不识别PHP7,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Apache是2.2版本,搭建过程如下:
【安装Apache】
cd /usr/local/src/wget http://syslab.comsenz.com/downloads/linux/httpd-2.2.11.tar.gzuseradd www (增加 Apache运行账户)tar zvxf httpd-2.2.11.tar.bz2cd httpd-2.2.11./configure --prefix=/usr/local/apache2 --with-included-apr --enable-so --enable-deflate=shared --enable-expires=shared --enable-rewrite=shared --enable-static-support --disable-userdirmakemake install
php7安装如下过程:
下载地址:http://php.net/get/php-7.0.11.tar.gz/from/a/mirror
下载“php-7.0.11.tar.gz”后移动到linux服务器的任意目录下,只在编译时指定安装到的目录。
.解压安装包
tar -zxvf php-7.0.11.tar.gz
cd php-7.0.11
配置安装变量
./configure --prefix=/usr/local/php --with-curl --with-freetype-dir --with-gd --with-gettext --with-iconv-dir --with-kerberos --with-libdir=lib64 --with-libxml-dir --with-mysqli --with-openssl --with-pcre-regex --with-pdo-mysql --with-pdo-sqlite --with-pear --with-png-dir --with-jpeg-dir --with-xmlrpc --with-xsl --with-zlib --with-bz2 --with-mhash --enable-fpm --enable-bcmath --enable-libxml --enable-inline-optimization --enable-gd-native-ttf --enable-mbregex --enable-mbstring --enable-opcache --enable-pcntl --enable-shmop --enable-soap --enable-sockets --enable-sysvsem --enable-sysvshm --enable-xml --enable-zip --with-apxs2=/usr/local/apache2/bin/apxs
注意:上面命令最后的–with-apxs2=/usr/local/apache2/bin/apxs千万不能少,否则在Apache下的/usr/local/apache2/modules目录下不会生成libphp7.so模块
编译源码
cd php-7.0.11
make
安装php
make install
配置PHP
将PHP源码包(/usr/local/php-7.0.11)中的php.ini-development文件复制到/usr/local/php/下,更名为php.ini。
打开Apache的/usr/local/apache2/conf下的httpd.conf,为了使得Apache识别php,应该做如下修改:
找到:
<IfModule dir_module>DirectoryIndex index.html
</IfModule>
将该行改为
<IfModule dir_module>DirectoryIndex index.html index.htm index.php
</IfModule>
在配置文件中搜素: AddType 关键字,在其后面追加下面三行,如果不追加,httpd会直接打印php文件内容,不会调用php执行。
AddType application/x-httpd-php .phpAddType application/x-httpd-php .php .phtml .php3AddType application/x-httpd-php-source .phps
还有必须新增一行:
<FilesMatch \.php$>SetHandler application/x-httpd-php
</FilesMatch>
在/usr/local/apache2/htdocs目录下新建test.php
<?php
echo phpinfo();
?>
运行http://127.0.0.1/test.php就可以正常访问了
总结:之前因为在配置PHP变量的时候没有加–with-apxs2=/usr/local/apache2/bin/apxs导致没有php7的模块,之后重新./configure后发现访问test.php还是空白页,之后找到一个答案在httpd.conf里加
<FilesMatch \.php$>SetHandler application/x-httpd-php
</FilesMatch>
加上这句话,重启Apache,就正常了
参考:https://stackoverflow.com/questions/30126134/i-need-libphp7-so-module-to-configure-apache-on-centos
http://wiki.jikexueyuan.com/project/linux/lamp.html
https://wiki.php.net/phpng#how_to_download_build_install_and_test
这篇关于Centos 7搭建LAMP环境遇到的apache不识别PHP7的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!