Possible Duplicate:
PHP: Changing referer with header()
I have a website (www.king370.co.cc) on which I want to host a script. The visitors of that script should be redirected to (king370.blogspot.com). So far it can be done using Meta-Refresh or php headers. If I use Meta-Refresh then the stats of blogger show that there was a visit from www.king370.co.cc which is called the referrer URL. I want to change that Referrer URL before the redirect. So here I explain the complete flow of my application.
User Visits http://www.king370.co.cc/hello.php in hello.php file I have written a meta-refresh tag so the page redirects to http://king370.blogspot.com In the blogger stats, 'http://www.king370.co.cc/hello.php', is shown as the referral URL. I want that referral URL to be changed to some other domain like 'www.somedomain.com'
The solution in any client-side or server-side technology is acceptable.