Wamp配置虚拟主机目录

将httpd.conf开启虚拟主机配置

Include conf/extra/httpd-vhosts.conf

配置localhost,以免之后访问localhost出现问题

<VirtualHost *:80>
        DocumentRoot "C:/wamp/www"
        ServerName localhost
        <Directory "C:/wamp/www">
            Options Indexes FollowSymLinks
            AllowOverride None
            Order allow,deny
            Allow from all
        </Directory>
</VirtualHost>

配置其他项

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

<VirtualHost *:80>
        DocumentRoot "C:/wamp/www/ihanzi"
        ServerName ihanzi.lizhangqu.com
        DirectoryIndex index.php
        <Directory />
            Options Indexes FollowSymLinks
            AllowOverride None
            Order allow,deny
            Allow from all
        </Directory>
</VirtualHost>

增加dns进hosts文件

127.0.0.1 localhost
127.0.0.1 lizhangqu.com
127.0.0.1 www.lizhangqu.com	
127.0.0.1 ihanzi.lizhangqu.com	


原文地址:https://www.cnblogs.com/lizhangqu/p/4234552.html