I see there is plenty of sites where you can hide refferer on url,yet i was not able to find script to make same type site.Any idea?
just pass it through as a normal redirect from your site, like example.com/?http://google.com -> meta refresh , then the referrer would appear to be from example.com
Its very simple, create a php file, example redirect.php, and insert the following code into it: <?php //you'd obviously need to validate this, this is just an example... $domain = @strip_tags($_GET['domain']); if(!empty($domain)){ echo "<meta http-equiv=\"refresh\" content=\"2;url=".$domain."\">"; echo "Redirecting..."; } else { echo "Domain not defined..."; } ?> PHP: Then use it like redirect.php?domain=http://digitalpoint.com