xampp 配置虚拟主机
在xampp\apache\conf\extra\httpd-vhost.conf 下面直接写
<VirtualHost *:80>
DocumentRoot "D:\xampp\htdocs\www\chain"
ServerName chain.com
<Directory "D:\xampp\htdocs\www\chain">
Options Indexes FollowSymLinks
AllowOverride all
Order Allow,Deny
Allow from all
</Directory>
</VirtualHost>
然后再host文件夹下(在C:\\user\system32\drivers\etc\host)
写 127.0.0.1 chain.com