document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php if ( $_REQUEST["id"] == "URL-TAG") {
  2.  
  3. header("Location: http://where-you-want-URL-TAG-to-go.com/");
  4.  
  5. exit();
  6.  
  7. } else {
  8.  
  9. header("Location: http://where-you-want-everything-else-to-go.com");
  10.  
  11. exit();
  12.  
  13. } ?>
');