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	


posted on 2015-01-11 18:19  lizhangqu  阅读(235)  评论(0编辑  收藏  举报

导航