1 首先进入Apache的配置目录 默认 /etc/apache2/site-available
2 复制default的配置文件 重命名
3 进入vim编辑该文件,清空 然后输入下面的内容
<VirtualHost *:80>
ServerName www.zhangao.com
DocumentRoot /var/www/html/liuyan
<Directory /var/www/html/liuyan>
DirectoryIndex index.php
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
4 在当前目录下创建连接
sudo ln -s /etc/apache2/sites-available/zhangao.conf /etc/apache2/sites-enabled/zhangao.conf
5 在本地计算机的system32下配置host
6 重启Apache
7 浏览器访问