wampserver配置虚拟主机

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wampserver配置虚拟主机相关的知识,希望对你有一定的参考价值。

以添加demo.com作虚拟主机,目录以W:/demo.com 为例

1.在 C:\Windows\System32\drivers\etc\hosts,添加:

127.0.0.1 demo.com

2.在 C:\wamp\bin\apache\apache2.4.23\conf\httpd.conf,查找:

# Virtual hosts
# Include conf/extra/httpd-vhosts.conf
修改为:
# Virtual hosts
 Include conf/extra/httpd-vhosts.conf

3.在 C:\wamp\bin\apache\apache2.4.23\conf\extra\httpd-vhosts.conf,添加几行代码:

<VirtualHost *:80>
    ServerName demo.com
    ServerAlias demo.com
    DocumentRoot "W:/demo.com
    <Directory  "W:/demo.com/">
        Options +Indexes +Includes +FollowSymLinks +MultiViews
        AllowOverride All
        Require local
    </Directory>
</VirtualHost>

添加后需要重启服务器,三步完成。

以上是关于wampserver配置虚拟主机的主要内容,如果未能解决你的问题,请参考以下文章

在wampserver3.0.6中配置虚拟主机(设置二级域名)

在wampserver环境中配置虚拟域名

/www 之外的命名虚拟主机上的 Wampserver 403

/www 之外的命名虚拟主机上的 Wampserver 403

wampserver 的Apache启动错误提示:The requested URL / was not found on this server.

wamp用www域名访问怎么配置?