Redirection Spoofing help.

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Redirection Spoofing help.

    Just before tonight I visit a site, I saw that the owner of that site using a excellent redirection idea to get the best use of the adsense. He uses the process like this:

    1. User visits a page named revive.php. (Here is the redirection code).
    2. User redirected to index.php. (From revive.php the user redirect through google to the index page).
    3. Index page showing the adsense ads with chosen high paying keywords and get a boost in SERP.

    I tried to made something like that with my 2 penny. but it always redirects to google and said unauthorized in the url. Can anyone get me some help here?

    PHP Code:
    <?
    $url = "http://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=4&ved=0CFoQFjAD&url=http%3A%2F%2Fmylawyer.blogspot.com";
    header('Location: '.$url);
    ?>
Working...
X