1. 程式人生 > >xampp中虛擬主機的配置

xampp中虛擬主機的配置

<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot "D:\vmware\webroot\helloworld"
ServerName www.helloworld.com
CustomLog "logs/dummy-host2.localhost-access.log" combined
ErrorLog "logs/dummy-host2.localhost-error.log"
</VirtualHost>


<Directory "D:\vmware\webroot\helloworld">
Options Indexes FollowSymLinks
AllowOverride All 
Order allow,deny
Require all granted
Allow from all
</Directory>