My site has a problem
-
Hello all,
About 10 days ago I suddenly started getting about 60 daily visitors from a URL called ”simple-share-buttons.com”. Of course these all bounce straight off and my ranking is getting completely screwed! The users come from different urls, such as:
– site37.simple-share-buttons.com
– site33.simple-share-buttons.com
– site18.simple-share-buttons.comYou get the idea. I tried putting this in the custom CSS:
$blocked_domains[] = ‘simple-share-buttons.com’;function bounce_losers() {
if(isset($_SERVER[‘HTTP_REFERER’])) {
$referring_domain = parse_url($_SERVER[‘HTTP_REFERER’]);
$referring_domain = $referring_domain[‘host’];
if(in_array($referring_domain, $blocked_domains)) {
header(“Location: “.$_SERVER[‘HTTP_REFERER’]);
die();
}
}
}add_action(‘init’, ‘bounce_losers’);
?>But this was not succesful.
Anybody has any hints?Thanks for your time and effort! Have a good day,
/Pieter Dingemans
- The topic ‘My site has a problem’ is closed to new replies.