XAMPP多站点配置
增加Listen
xamppapacheconfhttpd.conf
Listen 80
Listen 90
Listen 91
新增vHosts
xamppapacheconfextrahttpd-vhosts.conf
<VirtualHost *:90>
##ServerName localhost:90
ServerAdmin postmaster@localhost
DocumentRoot "D:/Website1"
<Directory "D:/Website1">
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Require all granted
</Directory>
</VirtualHost>