添加到 httpd.conf 文件的末尾
<VirtualHost 127.0.0.1:8080>
DocumentRoot "c:\www"
ServerName yc.com
<Directory "c:\www">
AllowOverride all
Options Indexes
Require all granted
DirectoryIndex index.html index.php
</Directory>
</VirtualHost>
配合使用,要修改windows下面的 hosts文件
文件位置
C:/windows/system32/drivers/etc/hosts
用记事本或者其他文本编辑软件打开,然后在后面添加一句:
127.0.0.1 yc.com
注意,中间需要用空格隔开