Skip to content

Instantly share code, notes, and snippets.

@electricg
Created July 31, 2012 10:49
Show Gist options
  • Save electricg/3216050 to your computer and use it in GitHub Desktop.
Save electricg/3216050 to your computer and use it in GitHub Desktop.
Remove referer and anonymize links
<?php
$url = getenv('QUERY_STRING');
if ($url == '') {
die ('THIS SCRIPT CANNOT BE CALLED DIRECTLY!');
}
?><!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; URL=<?php echo $url ?>">
</head>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment