前提:
安装Apache httpd服务,分别在默认站点目录/var/www/html/下创建并编辑index.html和mkdir 后的/var/www/html/authdir新站点下创建并编辑index.html

试验目的:
只允许192.168.1.1访问www.tarena.com
允许所有用户访问www.tarena.com/authdir/index.html
步骤:
(1)修改站点目录
[root@localhost ~]# mkdir /var/www/html/authdir //创建新站点目录
[root@localhost ~]#vim /var/www/html/authdir/index.html

This is a test Page!!!

This is http://www.tarena.com/authdir/index.html!!!

;

[root@localhost ~]#vim /var/www/html/authdir/index.html //默认站点目录

This is a test Page!!!

This is http://www.tarena.com/authdir/index.html!!!

;


(2)修改主配置文件
[root@localhost ~]# vim /etc/httpd/conf/httpd.conf
...
306
...
332 Order allow,deny
333 # Allow from all
334 Allow from 192.168.10.5
...
337
338 Order allow,deny
339 Allow from all
340

(3)启动服务
[root@localhost ~]# service httpd restart
(4)在不同客户端测试
A:访问/var/www/html/index.html

        用Win 7客户端(IP 192.168.1.1)来访问

HTTP的访问控制_第1张图片
用Linux客户端(IP 192.168.1.2)来访问
HTTP的访问控制_第2张图片
B:访问/var/www/html/authdir/index.html
用Win 7客户端(IP 192.168.1.1)来访问
HTTP的访问控制_第3张图片
用Linux 客户端(IP 192.168.1.2)来访问
HTTP的访问控制
总体访问控制设置成功!!!
补充:
在服务器上查看登录错误日志
root@localhost ~]# tail /var/log/httpd/tarena.com-error_log
HTTP的访问控制_第4张图片