Forum Moderators: Robert Charlton & goodroi
1. Which of these scripts should I use to redirect an affiliate link? I can't get .htacces to work with my host.
2. Should I include a no follow tag in front of the cloaked link on my page?
3. Are these "Google Safe"? Is there any way that using these to redirect links can hurt my site?
Any advice or comments about this process will be appreciated.
Script 1:
<?php header( "Location: http://www.example.com " );?>
Script 2:
<?
header("HTTP/1.1 301 Moved Permanently");
header("location: http://www.example.com");
exit();
?>
Thank you for your help,
Steve Weber