Si lo conocía, pero es super engorroso y tienes que estar siempre pendiente de ello. Mucho mas practico reglar en htaccess el hotlinking y se acabo el problema... sin preocupaciones.
Código Apache:
Ver originalRewriteEngine on
RewriteCond %{HTTP_REFERER} !^http://tuweb.es*/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://tuweb.es*$ [NC]
RewriteRule .*\.(gif|jpg|jpeg|bmp|png|zip|rar|mp3|flv|swf|xml|css|pdf)$ - [F,NC]
#bloqueamos mas tipos de archivo_quita o añade a tu elección.
Los buscadores de imágenes también dejaran de indexar (solo los de imágenes). Así que si queremos que nos sigan indexando colocaremos estas otras reglas:
Código Apache:
Ver originalRewriteEngine On
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !tuweb\.es [NC]
RewriteCond %{HTTP_REFERER} !google\. [NC]
RewriteCond %{HTTP_REFERER} !msn\. [NC]
RewriteCond %{HTTP_REFERER} !yahoo\. [NC]
RewriteCond %{HTTP_REFERER} !altavista\. [NC]
RewriteCond %{HTTP_REFERER} !ask\. [NC]
RewriteCond %{HTTP_REFERER} !archive\.org [NC]
RewriteCond %{HTTP_REFERER} !bing\. [NC]
RewriteCond %{HTTP_REFERER} !feedburner.com/.*$ [NC]
RewriteRule \.(gif|jpg|jpeg|bmp|zip|rar|mp3|flv|swf|xml|php|png|css|pdf)$ - [F,NC]
#bloqueamos mas tipos de archivo_quita o añade a tu elección.
Si quieres que cuando usurpen tu imagen, les aparezca otra definida por ti-----jaja,,, añade lo siguiente.
Código Apache:
Ver originalRewriteRule .*\.(jpe?g|gif|bmp|png)$ http://www.tuweb.es/imagenes/Hola_Listillo.jpg [L,NC]