11.14-11.17
到目前為止,雖然安裝好了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
11.14-11.17