xampp中虚拟主机的配置

来源:互联网 发布:网络电视iptv设置 编辑:程序博客网 时间:2024/05/16 08:04
<VirtualHost *:80>
ServerAdmin fromzeropoint@126.com
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>