English 中文(简体)
How can I block Alexa Toolbar users?
原标题:

Any ideas how I can block Alexa Toolbar users? I don t want to appear in the rankings while we are in beta ...

I see you can block their search engine with

User-agent: ia_archiver
Disallow: /

but I can t find any documentation on how to pull your self from actually being ranked.. I read earlier someone tried to email them and they rufused.. So I guess I m forced to block them?

Any better ideas, or way ideas on how to block them access?

最佳回答

For those finding this post later I worked out my own solution. Seems when the alex toolbar is installed it shows up in the user agent.

<?php 
echo $_SERVER[ HTTP_USER_AGENT ];
?>

You can redirect those users with php

preg_match( /(Alexa)/i ,$_SERVER[ HTTP_USER_AGENT ])?header( Location: http://alexausersgohere.com ):null;

You could also just redirect them by dumping this in your .htaccess file.

Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteEngine on
RewriteCond %{HTTP_USER_AGENT} ^Alexa
RewriteRule ^(.*)$ alexausersgohere.com#$1 [R=301,L]

Make sure you double check that htaccess code I just wrote it as a demonstration, its un-tested I used php.

问题回答

What do you think blocking is going to accomplish? By the time your web server sees the request, the browser has (obviously) sent the request and the toolbar (can have) observed and recorded the request. The response you send back can t undo any of that.





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签