• Please take a moment to look over the Suggestions & Feedback rules before making a post: READ RULES HERE

[REQ HELP] How to disallow Archive.org

l0l0

Registered Member
Joined
Dec 17, 2008
Messages
89
Reaction score
39
Hi guys,

I searched Google for how to block Archive.org from my websites.
I have read somewhere that Archive.org is close related to Alexa, is this true?
So, what happen when i block Archive.org?
Will this affect my Alexa ranking?

Anyway, how can i disallow Archive.org (by .htaccess)?

Thanks in advance for your help:)
 
you can do it with robots.txt
Code:
User-agent: ia_archiver
Disallow: /Folder/

with htaccess should look like this:
Code:
RewriteEngine On 
RewriteCond %{HTTP_USER_AGENT} ^ia_archiver
RewriteRule ^.* - [F,L]
 
Thanks for your fast reply XHPDX :)
Yes, i made a mistake, it have to be with Robot.txt ofcourse.
Im gonna try this, thanks again :)
 
Back
Top