```
// 都是开启服务器!
sudo apachectl -k start
sudo apachectl start
// 1.配置服务器根路径! --->别人通过网页访问的时候,本台计算机上的文件夹!
// 打开服务器所在的目录
cd /etc/apache2/
// 打开需要更改的文件/ vim 编辑器!
sudo vim httpd.conf
// 字母 i 进入编辑模式 esc 退出编辑模式
/ 查找的意思!
// 查找 文件中出现 DocumentRoot 的地方
// DocumentRoot 后面跟的路径就是服务器默认的路径!
/DocumentRoot
复制粘贴路径
shift + v 选中这一行
y 赋值选中的行
p 在当前行下面粘贴这一行
// 将系统原来的默认路径注释掉,方便自己查看格式错误!
apache 服务器默认需要使用php 代码做开发!
// 让服务器支持 php 代码
// 查找 php
/php
// 删除这一行的 "#" 号 打开注释!
更改服务器的显示配置
// 搜索 Options Follow
// Options FollowSymLinks Multiviews
在上面一行中增加 Indexes
Options Indexes FollowSymLinks Multiviews
:wq 保存退出!
:wq! 强制保存退出!
// 启动服务器
sudo apachectl -k start
// 重新启动服务器
sudo apachectl -k restart
:set nu 显示行号
出现下面的内容,就表示服务器配置成功!
AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using Teacher.local. Set the 'ServerName' directive globally to suppress this message
// 查看本地服务器:
// 127.0.0.1 -- 本机地址!
// localhost -- 本机的域名
// IP 地址: 192.168.23.34
```