URL: https://linuxfr.org/users/kuranes/journaux/microsoft-url-control Title: Microsoft url control Authors: tuan kuranes Date: 2003年11月05日T09:24:28+01:00 Tags: Score: 0 Je blocke les robots peu engageants (comme le "Microsoft url control" qui cherche des fichiers audio sur mon serveur apache 2) avec mod_Rewrite. RewriteEngine on RewriteBase / RewriteCond %{HTTP_USER_AGENT} ^MSFrontPage [OR] RewriteCond %{HTTP_USER_AGENT} ^[Ww]eb[Bb]andit [OR] RewriteCond %{HTTP_USER_AGENT} ^Zeus.*Webster [OR] RewriteCond %{HTTP_USER_AGENT} ^microsoft.url [OR] RewriteCond %{HTTP_USER_AGENT} ^sitecheck.internetseer.com [OR] RewriteCond %{HTTP_USER_AGENT} ^InternetSeer.com [OR] RewriteCond %{HTTP_USER_AGENT} ^Ping [OR] RewriteCond %{HTTP_USER_AGENT} ^Link [OR] RewriteCond %{HTTP_USER_AGENT} ^DIIbot [OR] RewriteCond %{HTTP_USER_AGENT} ^psbot [OR] RewriteCond %{HTTP_USER_AGENT} ^EmailCollector RewriteRule ^.* - [F] N'existe-t-il pas de moyen plus simple ? Et vous vous faites comment ?