配置虚拟目录

1、添加虚拟目录的节点

在http.conf文件中添加如下内容

#配置虚拟目录
<IfModule dir_module>
    #DirectoryIndex相当于欢迎界面
    DirectoryIndex index.html index.htm index.php
    #别名
    Alias /home "e:/PHP"
    <Directory e:/PHP>
    #访问权限设置
    order deny,allow
    Allow from 192.168.1.100
    Deny from 192.168
    </Directory>
</IfModule>

2、修改server主目录(可选)

#
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
# DocumentRoot "C:/Program Files (x86)/Apache2.2/htdocs"
# DocumentRoot "E:/PHP"

3、测试

http://localhost/home/

4、如何设置默认首页
<IfModule dir_module>
    DirectoryIndex index.html index.htm index.php
</IfModule>

5、关于apache访问权限的配置

<IfModule dir_module>
    <Directory e:/PHP>
    #访问权限设置
    order deny,allow
    Allow from 192.168.1.100
    Deny from 192.168
    </Directory>
</IfModule>

解释:
 
权限的控制是通过递归控制器,先检查“order deny,allow”,发现“deny”在“allow”的前面,所以检查“Deny from 192.168”这条规则,拒绝所有以192.168开头的ip地址;
由于Deny的规则只有“Deny from 192.168”这一条,所以就开始执行allow的规则,
这里只有一条“Allow from 192.168.1.100”,允许192.168.1.100这个IP访问e:/php这个目录;

最终的结果就是,只允许192.168.1.100,这个iP访问。

说明:
 1、<Directory e:/PHP>,指明了需要进行访问权限控制器的目录;
 2、order allow,deny,allow表示允许所有的用户访问,deny表示拒绝所有,匹配规则的顺序是,先匹配allow,然后才是deny;
 3、Allow from all,表示许可所有ip;

你可能感兴趣的:(配置虚拟目录)