Apache 虚拟机的配置说明

一、在wamp�h境下,直接通�^修改http.conf配置文件�砼渲�apache的��M�C步�E如下:

#Virtual Machine
<Directory "F:\www\youpeng\www">
    Options Indexes FollowSymlinks
    Order allow,deny
    Allow from all
</Directory>
NameVirtualHost *:80
<VirtualHost *:80>
    ServerName youpeng.com
    DocumentRoot F:\www\youpeng\www
</VirtualHost>
C:\WINDOWS\system32\drivers\etc\hosts

Okay,this is so simple.


二、在zend server和windows 7�h境下,通�^修改http.conf配置文件中的加�d��M�C�U展配置文件����Fapache的��M�C配置步�E如下:

 1.修改http.conf文件中引入��M�C�U展文件的�Z句(#)�]�N去掉.

# Virtual hosts
Include conf/extra/httpd-vhosts.conf

>> LoadModule .....

wKioL1QhTZbBCWmJAAf2jnH-dFg423.jpg

>> Include conf/extra/httpd-vhosts.conf

wKioL1QhTZfz_2YaAAIfQA0rRJA786.jpg

 


2.打�_apache�U展目�extra/httpd-vhosts.conf文件,添加下面的�Z句:

<VirtualHost *:80>
    ServerName   localhost
    DocumentRoot "D:\www"
</VirtualHost>
<VirtualHost *:80>
    ServerName   ihotelstore_booking_v2.com
    DocumentRoot "D:\www\bc\ihotelstore\trunk"
</VirtualHost>


最後修改c:\Windows\System32\driver\etc\文件hosts,直接添加下面的�Z句:

127.0.0.1 localhost
127.0.0.1  ihotelstore_booking_v2.com


添加支持多个项目,多个域名的步骤就是重复1,2的步骤:


   例如:为了新版本的ihotelstore,添加一个ihotelstore_booking_v3.com域名指向访问。

   1.在extra/httpd-vhosts.conf文件,添加如下语句:  

<VirtualHost *:80>
    ServerName ihotelstore_booking_v3.com
    DocumentRoot "D:\www\bc\ihotelstore3\trunk"
</VirtualHost>

   2.修改c:\windows\System32\drivers\etc路径下面的文件hosts,直接添加下面的语句:

    127.0.0.1   ihotelstore_booking_v3.com

××:在windows 7 64bit中windows 7 32bit的操作系统host文件所在的目录,我记得好像是不相同的。

本文出自 “我很菜” 博客,谢绝转载!

你可能感兴趣的:(apache,virtual,machine)