Forum Moderators: DixonJones
The only explanation so far was a sort of Panda-inducing degradation of user engagement metrics, but that seems like a long shot.
AddType application/x-httpd-php .html .htm
<?php
if ($_SERVER["HTTP_REFERER"] == "") {
$page=("http://".$_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"]);
echo "<script type=\"text/javascript\">
<!--
window.location = \"$page\"
//-->
</script>";
}
?>
According to analytics, the traffic comes from organic traffic with exact match keywords. It looks something like "keyword" and time on site is 0, bounce rate is 100.
If its all IE traffic
<?php
$ip=$_SERVER['REMOTE_ADDR'];
$filename="/path-to-file/zombie.txt"; //path to file
$content="IP $ip is a REAL Browser\n";
if (file_exists($filename)) {
$handle = fopen($filename, 'a');
fwrite($handle, $content,strlen($content));
fclose($handle);
}
?>
<?php
$ip=$_SERVER['REMOTE_ADDR'];
$filename="/path-to-file/zombie.txt";
$content="Is IP $ip a Browser?\n";
if (file_exists($filename)) {
$handle = fopen($filename, 'a');
fwrite($handle, $content,strlen($content));
fclose($handle);
} else {
$handle = fopen($filename, 'w');
fwrite($handle, $content,strlen($content));
fclose($handle);
}
?>
<script type="text/JavaScript">
<!--
var zombietest = "zombietest.php";
document.write('<iframe src="/' + zombietest + '" width="1px" height="1px"></iframe>');
//-->
</script>
<?php
if ($_SERVER["HTTP_REFERER"] == "") {
$pg=("http://".$_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"]);
echo "<script type=\"text/javascript\">
<!--
window.location = \"$pg\"
//-->
</script>";
} else {
//my content
}