• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.

Bloquear un dominio para que no se muestren las imagenes en él?

MeLkOrAzO

banned
Holas!, súper simple mi pregunta.

Cómo puedo bloquear un dominio en especifico, para que todas las imágenes del script no se muestren en dicho sitio?

Creo haberlo leído en alguna oportunidad, pero no logré encontrar donde. Seria de mucha ayuda!, gracias =)
 
Revisa la documentación que viene en la descarga del script.
 
Permitir solo que algunos sitios accedan a tus imagenes

Agrega en cualquier parte del archivo .htaccess lo siguiente:
Code:
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?dev.chevereto.com [NC]
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?godlike.cl [NC]
RewriteRule images/.*\.(jpg|png|bmp|gif)$ http://dev.chevereto.com/site-img/error.gif [NC,R,L]

Este código permite el acceso a los dominios indicados, sigue el mismo patrón para los que quieras establecer a tu gusto.

Pero esto es para eliminar el acceso a TODOS los sitios menos los que yo indique... y si quiero bloquear UN sólo dominio en especial? Cómo lo podría hacer? :/ ...soy novato.
 
mmm

Code:
RewriteEngine on
Options +FollowSymlinks
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?bloquear.com [NC]
RewriteRule images/.*\.(jpg|png|bmp|gif)$ http://dev.chevereto.com/site-img/error.gif [NC,R,L]

Si agregas mas de uno debes usar [NC,OR] al final de cada linea (en el ejemplo sale con NC) y en la ultimo dominio poner [NC] a secas.
 
Rodolfo said:
mmm

Code:
RewriteEngine on
Options +FollowSymlinks
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?bloquear.com [NC]
RewriteRule images/.*\.(jpg|png|bmp|gif)$ http://dev.chevereto.com/site-img/error.gif [NC,R,L]

Si agregas mas de uno debes usar [NC,OR] al final de cada linea (en el ejemplo sale con NC) y en la ultimo dominio poner [NC] a secas.


Yo eso no lo entendi podria decir donde se debe colocar eso y que modificar que url?
 
Code:
RewriteEngine on
Options +FollowSymlinks
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?bloquear.com [NC, OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?bloquear2.com [NC]
RewriteRule images/.*\.(jpg|png|bmp|gif)$ http://dev.chevereto.com/site-img/error.gif [NC,R,L]
 
Rodolfo said:
Code:
RewriteEngine on
Options +FollowSymlinks
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?bloquear.com [NC, OR]
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?bloquear2.com [NC]
RewriteRule images/.*\.(jpg|png|bmp|gif)$ http://dev.chevereto.com/site-img/error.gif [NC,R,L]

en que .htaccess debo meterlo?
 
Back
Top