PR hijack

bart567

Registered Member
Joined
Sep 27, 2010
Messages
60
Reaction score
1
Hello,
I have found article to Hijack PR with 302 redirect.

But i haven't found how to apply it.

Anyone know how?
 
Thanks !
It's so easy ? oO
 
you should put that redirect only for google bot

<?php
if ( strstr($_SERVER['HTTP_USER_AGENT'], "Googlebot" ) == true ){
header("Location: httx://googledotcom",TRUE,302);
}

but you should put a website with pr 7-8 not google because it can became suspicious
 
CAN SOMEONE PLEASSSE HELP? I have 46,000 urls in backlink checker in scrapebox, they have all been checked-waited ages for it to check em all, only trouble is i click on Download All and i just get the mouse timer showing for ages and ages is this normal or is 46,000 urls including all theyre backilinks too big to download to txt file? many thanks Maxine.
 
SB will only export the first 1000 links from what I recall.

You might want to split your list using SB options, so you can import, check, export, import, check export and so on.
 
Hello,
I tried different code but this does not work.
Here is my code:

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "httx://xxx.w3dotorg/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="httx://xxx.w3dotorg/1999/xhtml">
<head>
<title>Test page</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="style.css" type="text/css" media="screen" />
</head>
<body>
<?php
if ( strstr($_SERVER['HTTP_USER_AGENT'], "Googlebot" ) == true ){
header("Location: httx://zz.googledotcom",TRUE,302);
}
?>
<p>test</p>
</body>
</html>

No redirection works (I change the user agent via a firefox plugin)
Any idea?
 
HTTP headers must be placed before ANY content. So this code should be above the first line (<!DOCTYPE...)
Code:
<?php
if ( strstr($_SERVER['HTTP_USER_AGENT'], "Googlebot" ) == true ){
header("Location: httx://zz.googledotcom",TRUE,302);
}

And I wouldnt really waste time with PR hijack...
 
Back
Top