mask URL (do redirect) + track external links

Status
Not open for further replies.

wickedDUDE

New member
Jun 25, 2006
1,054
12
0
is there a program out there that will basically give me a summary of outbound links on my site?

I also want to be able to mask the affiliate URL... so basically the URL goes to mysite.com/whatever/redirect.php and then goes to the correct affiliate URL.

Thx.
 


That command isn't working for google or msn or any of my indexed sites

hrmmm works on most my sites and WF:

Code:
http://search.msn.com/results.aspx?q=linkfromdomain%3Awickedfire.com&mkt=en-US&form=QBRE&go.x=16&go.y=3
linkfromdomain:wickedfire.com Page 1 of 3,046 results
 
Snoopy class will do it page by page :)
download the class from source forge
then use a simple php code like

PHP:
<?
$url="yourpage";
include "Snoopy.class.php"; 
$snoopy = new Snoopy;
$links=$snoopy->fetchlinks($url);

echo "<pre>";
print_r($links);
echo "</pre>";
?>

its fast and easy but you would need to build some to get it to do the whole site on auto.
 
Status
Not open for further replies.