-
Simple redirect script
Hi, I am looking for a very simple script I can use to stop search engines following affiliate links on my site.
I want something that goes like: http://www.mysite.com/link/to.php?=h....affiliate.com
And, I will block the /link/ folder in my robots.txt.
How would this be done?
-
User-agent: *
Disallow: /link
i think that should work
-
I know how to do that. I am looking for a simple redirect script.
<edit>This is probably in the wrong forum</edit>
-
<?
header("Location: $id");
?>
If you put id=url in your query string.
Also, just try rel=nofollow.
-
Works a treat. Thanks Chris.
-
You could also just put a rel="nofollow" tag in your link to the affiliate.
<a href="myaffiliatelink" rel="nofollow">some text</a>
Search Engines / spiders see that tag and ignore that link.