3

我需要知道如何拒绝访问图像文件夹,但只允许从 php/html 读取它。

我认为最好的方法是在该文件夹中使用 .htaccess 之类的

deny from all
Options -indexes
AddHandler cgi-script .php .htm .html .sh
Options -ExecCGI

但这不起作用,因为我必须在根文件夹中具有以下 .htaccess

<FilesMatch "\.(gif|jpe?g|doc?x|pdf|zip|png)$">
AddHandler cgi-script .php .htm .html .sh
Allow from all
</FilesMatch>
<Files 403.shtml>
order allow,deny
allow from all
</Files>

解决方案

RewriteCond %{HTTP_HOST} ^xxx.com$
RewriteRule ^/?$ "http\:\/\/www\.xxx\.com\/index\.php" [R=301,L] 
RewriteCond %{HTTP_REFERER} !^http://(www\.)?xxx\.com/.*$ [NC]
RewriteRule _files/photo/([^/]+)\.(gif|png|jpg)$ - [F] 

也没有工作...?有专家吗?

4

1 回答 1

2

用这个替换你现有的代码:

RewriteCond %{HTTP_HOST} ^xxx\.com$
RewriteRule ^$ http://www.xxx.com/index.php [R=301,L] 

RewriteCond %{HTTP_REFERER} !^http://(www\.)?xxx\.com/ [NC] 
RewriteRule ^_files/photo/[^.]+\.(jpe?g|gif|bmp|png)$ - [F,NC]
于 2012-05-30T11:58:09.393 回答