第一步:打开Apache的配置文件

vim /usr/local/apache2/conf/httpd.conf
/ServerName
加一行ServerName localhost:80  //常见会写错成ServieName

第二步:配置Apache语言支持中文

打开注释159行和483行

/nego和/languages

166行添加:

AddHandler php7-script .php
AddType text/html .php

第三步:添加index.php默认首页

270行左右

/dir-module

第四步:让Apache优先支持中文

vim /usr/local/apache2/conf/extra/httpd-languages.conf
19行:/DefaultLanguage zh-CN
78行:LanguagePriority zh-CN en....................把中文首选
cd /usr/local/apache2
bin/apachectl -k start         //重启Apache

第五步:在Windows中配置本地Dns

运行(Win+R),drivers回车到hosts修改域名指向:ip 域名

然后测试ping一下(特别注意只能用IDEA或者其他代码编辑器修改,因为记事本修改没用)

第六步:编写php测试脚本

cd /usr/local/apache2/htdocs   //htdocs是Apache的默认目录
rm -rf index.html
vim index.php
<?php
    phpinfo();
?>从网页输入192.168.1.1/index.php 
  

如果是白屏就一直重启Apache服务就行

pkill httpd
cd /usr/local/apache2
bin/apachectl 

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论

微信小程序

微信扫一扫体验

立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部