1

我现在正在做的是阻止某个文件夹中任何图像的热链接并重定向到包含该图像的网站:

RewriteEngine on
RewriteCond %{HTTP_REFERER} !^http://(www\.)?mydomain.com/.*$ [NC]
RewriteRule (.*)\.(gif|jpg|png)$ /$1.html [R,L]

我现在要做的是将某些页面列入白名单

例如 bing.com | google.com | google.fr | google.de | 等等

我想这是一项相当容易的任务,但我对 .htaccess 很糟糕:/

谢谢您的帮助

4

1 回答 1

1

你可以试试:

RewriteEngine on
RewriteCond %{HTTP_REFERER} !^http://(www\.)?mydomain.com/.*$ [NC]
# add whatever other search engines you want to whitelist
RewriteCond %{HTTP_REFERER} !(bing.com|google|yahoo) [NC]
RewriteRule (.*)\.(gif|jpg|png)$ /$1.html [R,L]
于 2012-09-17T15:56:42.950 回答