Wamp配置虚拟主机目录

来源:互联网 发布:自学java如何找工作 编辑:程序博客网 时间:2024/05/17 08:22

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

Include conf/extra/httpd-vhosts.conf  

配置httpd-vhosts.conf文件

将原来的内容删除,添加本地根目录
<VirtualHost *:80>    ServerAdmin postmaster@dummy-host2.localhost    DocumentRoot "D:\wamp\apps\phpmyadmin3.4.10.1"    ServerName www.phpmyadmin.com    ServerAlias www.dummy-host2.localhost    ErrorLog "logs/dummy-host2.localhost-error.log"    CustomLog "logs/dummy-host2.localhost-access.log" combined</VirtualHost><VirtualHost *:80>    ServerAdmin postmaster@dummy-host2.localhost    DocumentRoot "D:/wamp/www/www.shopjd.com"    ServerName www.shopjd.com    ServerAlias www.dummy-host2.localhost    ErrorLog "logs/dummy-host2.localhost-error.log"    CustomLog "logs/dummy-host2.localhost-access.log" combined</VirtualHost><VirtualHost *:80>    ServerAdmin postmaster@dummy-host2.localhost    DocumentRoot "D:/wamp/www/www.shopjd.com/Oj"    ServerName www.simpleoj.cn    ServerAlias www.dummy-host2.localhost    ErrorLog "logs/dummy-host2.localhost-error.log"    CustomLog "logs/dummy-host2.localhost-access.log" combined</VirtualHost>

修改host文件
# Copyright (c) 1993-2009 Microsoft Corp.## This is a sample HOSTS file used by Microsoft TCP/IP for Windows.## This file contains the mappings of IP addresses to host names. Each# entry should be kept on an individual line. The IP address should# be placed in the first column followed by the corresponding host name.# The IP address and the host name should be separated by at least one# space.## Additionally, comments (such as these) may be inserted on individual# lines or following the machine name denoted by a '#' symbol.## For example:##      102.54.94.97     rhino.acme.com          # source server#       38.25.63.10     x.acme.com              # x client host# localhost name resolution is handled within DNS itself.#127.0.0.1       localhost#::1             localhost127.0.0.1       localhost127.0.0.1       www.phpmyadmin.com127.0.0.1       www.shopjd.com127.0.0.1       www.simpleoj.cn


1 0