XAMPP多站点配置
XAMPP多站点配置
增加Listen
xampp\apache\conf\httpd.conf
Listen 80
Listen 90
Listen 91
新增vHosts
xampp\apache\conf\extra\httpd-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>