Help - need a little php coding (redirection)

trecords

Junior Member
Joined
Oct 5, 2008
Messages
101
Reaction score
90
Hello,
I need increase impression of my site on google adsense. I want run cron job to a little php which redirected to index or other page of my site.
Who can give me this php?

Thank you.
 
Sorry, but i don.t know what to write to htaccess. Where to point cron?
 
Why do you want to do a cron job? Its not required for redirection.
 
I will cron it from different servers with different IPs :)
 
<?
header('Location: /index.html');
?>

just change /index.html to whatever you like. Should redirect any access to that page.
 
Back
Top