使用.htaccess下载页面/文件夹隐私?

时间:2009-08-08 12:21:02

标签: security .htaccess

我的域名中有一个私人文件夹,如

http://example.com/protected

我在那里存储了很多图像和pdf文件

 /protected/pad1.pdf
 /protected/pad2.pdf
 /protected/pad1.png
 /protected/pad1.png

supose这些是文件,如何在.htaccess文件的帮助下隐藏或保护对文件的访问。

仅允许知道密码的用户。

有可能???

2 个答案:

答案 0 :(得分:5)

Authentication, Authorization and Access Control上查看Apache的页面 - 一种方法是使用基本或摘要式身份验证。这看起来像这样:

AuthType Digest
AuthName "Private files"
AuthDigestFile /usr/local/apache/passwd/digest
Require user (usernames here)

当然,您还需要使用htdigesthtpasswd生成密码和/或摘要文件,但该程序在我链接到的文档中有说明。

答案 1 :(得分:1)

或零配置和零访问:

Order Allow, Deny
Deny From All

=)