欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Wamp 多虚拟机配置方法

程序员文章站 2022-07-12 22:32:40
...

第一步

httpd.conf 文件里面找到 ,开启 Virtual hosts

Virtual hosts(虚拟主机)

Include conf/extra/httpd-vhosts.conf

第二步

httpd-vhosts.conf文件添加如下内容

<VirtualHost *:80>    
    DocumentRoot "D:/wamp/www/m"     
    ServerName www.m.com
    ServerAlias www.m.com
    <Directory />
        Options FollowSymLinks
        AllowOverride None
        Order deny,allow
        Allow from all
    </Directory>
</VirtualHost>

第三步

在host文件里面 添加

127.0.0.1       www.m.com

第四部:

重启apache

在浏览器输入 www.m.com 就能看到 "D:/wamp/www/m"
目录下面的 index.html/index.htm/index.php/index.asp/index.jsp/index.aspx