分类: LINUX
2008-05-16 09:47:09
HTTP访问控制 |
1、基于IP的访问控制 在需要访问控制目录的 Order Allow,Deny Allow From 192.168.1.#允许来自192.168.1域的访问 Order Deny,Allow Deny From 192.168.0.#拒绝来自192.168.0域的访问 2、基于用户的访问 在需要访问控制的目录下添加文件.htaccess文件: AuthName "认证" AuthType Basic AuthUserFile /etc/httpd/conf/xx.htpasswd require valid-user 添加用户 htpasswd -mc /etc/httpd/conf/xx.htpasswd htp 在目录的 AllowOverRide AuthConfig 3、重启httpd |