标签:httpd配置
11.14 Apache和PHP结合(上)到目前为止,虽然安装好了apache,mysql,php,但是还没有将他们结合在一起。
虽然apache利用php调用了一个模块,但是还没有做实验,还不知道他们能不能解析php.
所以现在得编辑一下Apache,httpd的配置文件。
httpd主配置文件/usr/local/apache2.4/conf/httpd.conf
vim /usr/local/apache2.4/conf/httpd.conf //修改以下4个地方
ServerName
启动Apache的时候,会有以下报错信息提示,要使它不出现,
[root@centos7-01 ~]# /usr/local/apache2.4/bin/apachectl start
AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using fe80::243c:86d7:d85e:224d. Set the 'ServerName' directive globally to suppress this message
#vim /usr/local/apache2.4/conf/httpd.conf
搜索ServerName,把#ServerName www.exaple.com:80的#删除。
#/usr/local/apache2.4/bin/apachectl start
#vim /usr/local/apache2.4/conf/httpd.conf
搜索Require all denied
改成Require all granted
以为不修改参数 会登录失败的。
AddType application/x-httpd-php .php
DirectoryIndex index.html index.php
/usr/local/apache2.4/bin/apachectl -t //测试语法
/usr/local/apache2.4/bin/apachectl start //启动服务
netstat -lntp
curl localhost
vim /usr/local/apache2.4/htodcs/test.php //增加如下内容
<?php
echo 123;
?>
curl localhost/test.php
标签:httpd配置
原文地址:http://blog.51cto.com/13578154/2097544