Evitar el enlace directo de imágenes - Trucos CSS

Anonim
RewriteEngine On RewriteCond %(HTTP_REFERER) !^http://(.+\.)?yourdomain\.com/ (NC) RewriteCond %(HTTP_REFERER) !^$ RewriteRule .*\.(jpg.webp|gif|bmp.webp|png)$ /images/dontsteal.jpg.webp (L)

Las imágenes vinculadas desde cualquier otro lugar que no sea su sitio web se redirigen a un gráfico personalizado. Sin embargo, tenga en cuenta que esto también afectaría a las personas que leen publicaciones a través de lectores RSS.

También permitir motores de búsqueda

RewriteCond %(HTTP_REFERER) !^http://(.+\.)?mydomain\.com/ (NC) RewriteCond %(HTTP_REFERER) !^http://(.+\.)?google\.(.+)/ (NC) RewriteCond %(HTTP_REFERER) !^http://(.+\.)?(.*\.)?google\.(.+)/ (NC) RewriteCond %(HTTP_REFERER) !^http://(.+\.)?bing\.(.+)/ (NC) RewriteCond %(HTTP_REFERER) !^http://(.+\.)?(.*\.)?bing\.(.+)/ (NC) RewriteCond %(HTTP_REFERER) !^http://(.+\.)?yahoo\.(.+)/ (NC) RewriteCond %(HTTP_REFERER) !^http://(.+\.)?(.*\.)?yahoo\.(.+)/ (NC) RewriteCond %(HTTP_REFERER) !^$ RewriteRule .*\.(jpe?g|gif|png)$ /transparent.gif (L)