<?php

$url = 'https://w...content-available-to-author-only...e.org/web/20070701005218/http://w...content-available-to-author-only...s.com/';



		$ch = curl_init();
		$timeout = 5;

		// HEADERS AND OPTIONS APPEAR TO BE A FIREFOX BROWSER REFERRED BY GOOGLE
		$header[] = "Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5";
		$header[] = "Cache-Control: max-age=0";
		$header[] = "Connection: keep-alive";
		$header[] = "Keep-Alive: 300";
		$header[] = "Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7";
		$header[] = "Accept-Language: en-us,en;q=0.5";
		$header[] = "Pragma: "; // BROWSERS USUALLY LEAVE BLANK

		curl_setopt( $ch, CURLOPT_URL,            $url  );
		curl_setopt( $ch, CURLOPT_USERAGENT,      'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.6) Gecko/20091201 Firefox/3.5.6'  );
		curl_setopt( $ch, CURLOPT_HTTPHEADER,     $header  );
		curl_setopt( $ch, CURLOPT_REFERER,        'https://www.google.com'  );
		curl_setopt( $ch, CURLOPT_ENCODING,       'gzip,deflate'  );
		curl_setopt( $ch, CURLOPT_AUTOREFERER,    TRUE  );
		curl_setopt( $ch, CURLOPT_RETURNTRANSFER, TRUE  );
		curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, TRUE  );
		curl_setopt( $ch, CURLOPT_TIMEOUT,        $timeout  );
		curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
		curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
        $info = curl_getinfo($ch,CURLINFO_EFFECTIVE_URL);

		$htm = curl_exec($ch);

		curl_close($ch);

        echo $info;