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:
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.
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]
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.
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]