Hot-linking es un término que se usa para indicar que alguien está usando un enlace a una imagen que está, por ejemplo en tu sitio web, y se mostrará en otra web sin autorización el propietario.
Por ejemplo, en Nicklabs tenemos imágenes que muestran información, y he visto publicaciones en otros blogs de mis artículos, el tipico copiar y pegar, el tema es que si se pone en un sitio como taringa o algún sitio que tenga muchas visitas puede traer algunos problemas como:
- El volumen de tráfico de mi hosting crece mucho y te querien cobrar un
- excedente por el uso excesivo de ancho de banda.
- El sitio web comienza a cargar más lento.
- Se produce un «Robo» de información sin autorización.
Para evitar esta práctica se puede bloquear el acceso a nuestras imágenes con un simple archivo de texto plano llamado .htaccess que debe estar ubicado en nuestro directorio principal del hosting y tener el siguiente contenido:
<ifmodule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://nicklabs.com.ar$ [NC]
RewriteCond %{HTTP_REFERER} !^http://nicklabs.com.ar/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.nicklabs.com.ar$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.nicklabs.com.ar/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.google.com/reader/view/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.google.com/reader/m/view/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://[^/.].feedburner.com$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.google.com.ar/reader/view/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.google.com.ar/reader/m/view/.*$
[NC]
RewriteCond %{HTTP_REFERER} !^http://feeds.feedburner.com/Nicklabs$ [NC]
</ifmodule>
Que significa lo que tiene el archivo, básicamente le estoy diciendo que mi sitio web o sea Nicklabs puede mostrar imágenes, y le también google reader y feedburner junto con mi perfil, si necesito compartir imágenes con otros sitios o servicios es solo cuestión de agregar la dirección.
Por lo que recomiendo que si queres que te lleguen nuestras publicaciones te suscribas por mail que seguramente te van a llegar con la imágenes, por otro servicio tal vez solo llegue el contenido, por favor deja un mensaje para saber que servicio agregar.
Excelente articulo para evitar el copi & paste masivo.
Gracias.