Linux 浏览器访问PHP显示源码
Linux版本centos6.4apache版本[root@xxxxxx ~]# httpd -vServer version: Apache/2.2.15 (Unix)Server built: Aug 15 2017 19:44:58因为我安装的PHP是二进制(不懂)./configure --with-mysql --with-mysqli --with-
·
Linux版本centos6.4
apache版本
[root@xxxxxx ~]# httpd -v
Server version: Apache/2.2.15 (Unix)
Server built: Aug 15 2017 19:44:58
因为我安装的PHP是二进制(不懂)
./configure --with-mysql --with-mysqli --with-pdo-mysql
make
make install
解决方法
./configure --with-mysql --with-mysqli --with-pdo-mysql --with-apxs2
出现一个问题
apsx不存在
在解决
yum install httpd-devel
这次apsx有了
然后再
./configure --with-mysql --with-mysqli --with-pdo-mysql --with-apxs2
make
make install
别忘记重启apache
service httpd restart
ok
更多推荐
已为社区贡献1条内容
所有评论(0)