搭建LAMP中安裝PHP遇到的故障

科技小能手發表於2017-11-12

apache結合php遇到的故障

啟動apache時出現錯誤:

1
2
3
/usr/local/apache2/bin/apachectl -t
AH00526: Syntax error on line 367 of /usr/local/apache2/conf/httpd.conf:
AddType requires at least two arguments, a mime type followed by one or more file extensions

AddType application/x-httpd-php.php  ,啟動apache出現 AddType requires at least two arguments, a mime type followed by one or more file extensions。 這是因為在 “AddType application/x-httpd-php.php”中的”php.php” 應該要有一個空格 的“AddType application/x-httpd-php  .php”

1
2
3
重啟apachel語法檢測正常
[root@centos6 local]# /usr/local/apache2/bin/apachectl -t
Syntax OK

報伺服器主機名描述警告

1
2
3
[root@centos6 local]# /usr/local/apache2/bin/apachectl -t
AH00558: httpd: Could not reliably determine the server`s fully qualified domain name, using 192.168.25.113. Set the `ServerName` directive globally to suppress this message
Syntax OK
1
2
3
vi /usr/local/apache2/conf/httpd.conf
修改httpd.conf檔案:
ServerName localhost:80

本文轉自 boy461205160 51CTO部落格,原文連結:http://blog.51cto.com/461205160/1731086


相關文章