XAMPP多站点配置

XAMPP多站点配置

增加Listen

xampp\apache\conf\httpd.conf

Listen 80
Listen 90
Listen 91

listen

新增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>

vhost

posted @ 2021-03-17 17:33  devs  阅读(81)  评论(0编辑  收藏  举报