摘要:摘要: Apache和PHP结合、Apache默认虚拟主机
1、Apache和PHP结合
配置httpd支持php
•httpd主配置文件/usr/local/apache2.4/conf/httpd.conf
•vim/usr/local/apache2.4/conf/httpd.conf//修改以下4个地方
ServerName
Requirealldenied
AddTypeapplication/x-httpd-php.php
DirectoryIndexindex.htmlindex.php
•/usr/local/apache2.4/bin/apachectl-t//测试语法
•/usr/local/apache2.4/bin/apachectlstart//启动服务
•netstat-lntp
•curllocalhost
•vim/usr/local/apache2.4/htodcs/test.php//增加如下内容
<?php
echo123;
?>
•curllocalhost/test.php
配置http支持PHP http的主配置文件为/usr/local/apache2.4/conf/httpd.conf这里需要修改配置文件中的4处,分别为:
ServerName
Requirealldenied
AddTypeapplication/x-httpd-php.php
DirectoryIndexindex.htmlindex.php
步骤:
修改ServerName
[root@centos001~]#/usr/local/apache2.4/bin/apachectlrestart AH00558:httpd:Couldnotreliablydeterminetheserver\'sfullyqualifieddomainname,usingfe80::20c:29ff:fe34:4a63.Setthe\'ServerName\'directivegloballytosuppressthismessage
解决方法:编辑这个文件,然后重启就没有了
进入配置文件后搜索ServerName
#进入配置文件 [root@centos001~]#vim/usr/local/apache2.4/conf/httpd.conf #搜索 /ServerName
错误1:视屏中遇到的错误,取消掉注释后重启服务,还是有问题
相关文章推荐
虚拟主机的专业参数,分别都是什么意思?2022-09-09
中非域名注册规则是怎样的?注册域名有什么用处? 2022-01-10
HostEase新年活动促销 美国/香港主机全场低至五折2021-12-28
HostGator下载完整备份教程分享2021-12-28
Flink中有界数据与无界数据的示例分析2021-12-28