boss44 发表于 2015-8-22 13:18:17

Wamp配置虚拟主机目录

  将httpd.conf开启虚拟主机配置
  Include conf/extra/httpd-vhosts.conf

配置localhost,以免之后访问localhost出现问题
  <VirtualHost *:80>
DocumentRoot &quot;C:/wamp/www&quot;
ServerName localhost
<Directory &quot;C:/wamp/www&quot;>
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</VirtualHost>

配置其他项
  <VirtualHost *:80>
DocumentRoot &quot;C:/wamp/www&quot;
ServerName lizhangqu.com
<Directory &quot;C:/wamp/www&quot;>
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
<VirtualHost *:80>
DocumentRoot &quot;C:/wamp/www/ihanzi&quot;
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
页: [1]
查看完整版本: Wamp配置虚拟主机目录