第一步:打开Apache的配置文件
vim /usr/local/apache2/conf/httpd.conf/ServerName加一行ServerName localhost:80 //常见会写错成ServieName
第二步:配置Apache语言支持中文
打开注释159行和483行
/nego和/languages
166行添加:
AddHandler php7-script .phpAddType text/html .php
第三步:添加index.php默认首页
270行左右
/dir-module
第四步:让Apache优先支持中文
vim /usr/local/apache2/conf/extra/httpd-languages.conf19行:/DefaultLanguage zh-CN78行:LanguagePriority zh-CN en....................把中文首选cd /usr/local/apache2bin/apachectl -k start //重启Apache
第五步:在Windows中配置本地Dns
运行(Win+R),drivers回车到hosts修改域名指向:ip 域名
然后测试ping一下(特别注意只能用IDEA或者其他代码编辑器修改,因为记事本修改没用)
第六步:编写php测试脚本
cd /usr/local/apache2/htdocs //htdocs是Apache的默认目录rm -rf index.htmlvim index.php从网页输入192.168.1.1/index.php
如果是白屏就一直重启Apache服务就行
pkill httpdcd /usr/local/apache2bin/apachectl
来源地址:https://blog.csdn.net/CCTVZHENG/article/details/129032153