something like I do not want to pass through the direct link through my webpage. I want it to be something like http://www.mywebpage.com/redirect?=1 or http://www.mywebpage.com/redirect?=http://www.google.com Which will redirect to http://www.google.com
I am looking for a direct url link as I need to pass my referrer id through. I am actually using wordpress blogroll but I do not want it to show the direct url but a redirection url
use the following code where Content Means After How Many Seconds You Want To Redirect And In URL Enter The Site Where You Want To Redirect Thanks
i think you are asking for a php redirect script. similar to www.mysite.com/redirect.php?id=www.yoursite.com some like that? i would check hot scripts
Ah, its just a small php code you need. <?php header("Location: " . $_GET['url']); ?> Code (markup): Save this as redirect.php in your home directory. Use it as www.domain.com/redirect.php?url=www.google.com and it will redirect to google.com Thanks, e = mc²