Ver Mensaje Individual
  #1 (permalink)  
Antiguo 31/01/2013, 20:13
tonydx16
 
Fecha de Ingreso: febrero-2011
Mensajes: 233
Antigüedad: 13 años, 3 meses
Puntos: 4
Problema con hotlink

tengo el siguiente código en el .htaccess

Código Apache:
Ver original
  1. RewriteEngine on
  2. RewriteCond %{HTTP_REFERER} !^$
  3. RewriteCond %{HTTP_REFERER} !^http://(www\.)?misitio.com(/)?.*$ [NC]
  4. RewriteRule \.(gif|jpg|png)$ – [F]
  5.  
  6. RewriteRule \.(gif|jpg|png)$ http://misitio.com/imagen.jpg [R,L]


Todo bien con algunas imágenes, pero no se ve mi logo en la misma web, se ve la imagen "http://misitio.com/imagen.jpg"... a qué se debe el error?