LAMP环境搭配之apache与php结合

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LAMP环境搭配之apache与php结合相关的知识,希望对你有一定的参考价值。

httpd主配置文件/usr/local/apache2.4/conf/httpd.conf

 vim /usr/local/apache2.4/conf/httpd.conf //修改以下4个地方
ServerName
Require all denied
AddType application/x-httpd-php .php
DirectoryIndex index.html index.php

具体操作:
1,打开这一行ServerName www.example.com:80
2,Require all denied改为Require all granted
3,AddType application/x-compress .Z
     AddType application/x-gzip .gz .tgz
      在上面两行下面加上这一行,不增加这一行php没办法解析
      AddType application/x-httpd-php .php
4,DirectoryIndex index.html改为DirectoryIndex index.html index.php 增加一个索引页

测试语法

/usr/local/apache2.4/bin/apachectl -t

启动服务

/usr/local/apache2.4/bin/apachectl start 
 netstat -lntp 
 curl localhost

编辑测试的php文件

vim /usr/local/apache2.4/htodcs/test.php //增加如下内容
<?php
echo 123;
?>

curl测试

curl localhost/test.php

以上是关于LAMP环境搭配之apache与php结合的主要内容,如果未能解决你的问题,请参考以下文章

LAMP-Apache和PHP的结合

linux下LAMP环境的搭配

LAMP架构部署-- 三.编译安装PHP

LAMP之Apache

LAMP和LNMP环境PHP缓存加速器的原理

LAMP+LNMPLAMP环境搭建测试