Hola a todos, agracería me pudieran ayudar con este tema, llevo días tratando de solucionarlo y nada, aparentemente el .htaccess no funciona del todo.
# Estoy activando mod_rewrite, bloqueando el acceso a las extensiones de chat de IE, bloqueando robots que acceden al sitio pero permitirles leer el archivo robots.txt y bloqueando el spam por referidos.
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^(/_vti_bin/|/MSOffice/) [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^($|.$|[bcdfgjklmnpqrstvwxyz]{5,}|.*compatible\ \;|.*HTTrack|Microsoft|.*Java|.*larbin|Yandex|ia_a rchiver|Exabot|Teoma|.*MJ12bot|BaiDuSpider|Speedy| .*CFNetwork|bot*|Twiceler|.*Surveybot|Motor|.*Nutc h|crawl|WordPress) [NC,OR]
RewriteCond %{HTTP_REFERER} ^(http(s)?://translate.googleusercontent.com.*|http(s)?://74.125.155.132/search|http(s)?://209.85.229.132/search) [NC]
RewriteCond %{REQUEST_URI} !^(/robots.txt) [NC]
RewriteRule ^.*$ - [F,L]
# Estoy evitando el hotlinking de imágenes
RewriteCond %{HTTP_REFERER} ^(http(s)?://(.+\.)?dominio\.org.*) [NC,OR]
RewriteCond %{HTTP_REFERER} ^(http(s)?://(.+\.)?otrodominio\.otracosa\.com.*) [NC]
RewriteRule .*\.(jpe?g|gif)$ - [F,L]
En cuanto a las webs que me hacen hotlinking, la imagen no aparece, pero siguen apareciendo en las solicitudes al servidor como enlaces desde páginas externas (siguen consumiendo).
En cuanto a los robots y al spam que he bloqueado supuestamente con el .htaccess, siguen visitando el sitio, es decir, ni caso al bloqueo.
Desde ya muchas gracias a todo aquel que me pueda ayudar.