linux环境下配置Apache与PHP

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

vim /usr/local/apache2/conf/httpd.conf
/ServerName
加一行ServerName localhost:80  //常见会写错成ServieName
linux环境下配置Apache与PHP_第1张图片

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

打开注释159行和483行

/nego和/languages

166行添加:

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

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

270行左右

/dir-module

linux环境下配置Apache与PHP_第2张图片

第四步:让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


从网页输入192.168.1.1/index.php 
  

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

pkill httpd
cd /usr/local/apache2
bin/apachectl 
linux环境下配置Apache与PHP_第3张图片

你可能感兴趣的:(Linux基础,linux,python,centos)