码迷,mamicode.com
首页 > 其他好文 > 详细

Apache配置基于IP的虚拟主机 Apache virtual host configuration is based on the IP

时间:2014-07-22 08:04:37      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   使用   os   

Step 1:

  检查是否开启 httpd-vhosts.conf

  apache/conf/httpd.conf文件

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

  如果没有开启,必须在httpd.conf文件中设置;如果开启,则可以在apache/conf/extra/httpd-vhosts.conf文件中设置,当然也还是可以再httpd.conf文件中进行设置,同样有效。

 

Step 2:

  httpd.conf文件 DocumentRoot一定要是要配置成虚拟主机的项目的父级目录,此处的DocumentRoot限制的级别最高,虚拟主机中设置的DocumentRoot目录级别只能等于或低于此处的DocumentRoot目录。

# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "D:\htdocs"
<Directory "D:\htdocs">

 

Step 3:

  按照Step1中的规则,添加虚拟主机配置。

<VirtualHost 127.0.0.1:80>
    DocumentRoot "D:\htdocs\project1\www"
    ServerName 127.0.0.1:80
    <Directory "D:\htdocs\project1\www">
        Options Indexes FollowSymLinks Multiviews
        AllowOverride All
        Order Allow,Deny
        Allow from all
    </Directory>
</VirtualHost>  
  
<VirtualHost 127.0.0.2:80>
    DocumentRoot "D:\htdocs\project2"
    ServerName 127.0.0.2:80
    <Directory "D:\htdocs\project2">
        Options Indexes FollowSymLinks Multiviews
        AllowOverride All
        Order Allow,Deny
        Allow from all
    </Directory>
</VirtualHost>

 

Note:

  在虚拟主机配置中一定要覆盖127.0.0.1,不然则使用httpd.conf中配置的DocumentRoot的目录,那么项目的上级目录则暴露了。

Apache配置基于IP的虚拟主机 Apache virtual host configuration is based on the IP,布布扣,bubuko.com

Apache配置基于IP的虚拟主机 Apache virtual host configuration is based on the IP

标签:style   blog   http   color   使用   os   

原文地址:http://www.cnblogs.com/hlt1988321/p/3857605.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!