Fastest redirect method for affiliate links?

capflam

Junior Member
Joined
Aug 7, 2008
Messages
142
Reaction score
3
Hi,

I am using meta-refresh as redirect method but I find it slow. What is the fastest way to redirect users?

Thanks
 
I don't know what is meta refresh but i use a php redirect script below:

<?php header("Location: http://www.youraffiliatelink"); ?>
 
Thank you very much Darkman, I totally forgot this existed.
 
use the java version:

<script>
document.location.href = "URL";
</script>
 
In my experience the php and java redirects are not any faster than the meta refresh. At least over many redirects. Any single one could be slower or faster for a multitude of reasons.
 
Just note that php header redirection WILL NOT hide your referer. Using JS based redirection, your referer will be the page that you use redirect.
 
Thank meannn. Is there any way to have some kind of fallback if the user has javascript deactivated? There actually are some people who do that..
 
Meta-refresh is better & also have the option to set the time delay.
 
Meta refresh starts after the page has loaded. Even the page has only includes redirection code, js redirect is faster than meta redirect. Also, htaccess is the fastest redirection method, but it acts like php header redirect. So, what's the solution ? Using meta redirection and js redirection both. If user has disabled js, meta redirect will redirect user. If not, js will redirect user first.

meannn
 
Very informative and satisfying. Thanks for the detailed explenation. I dont know why but i get very exited when i see your location as Turkey here :) Maybe we should make a separete title only for Turkish people here :) I still cannot send private message, seams i need more messages on this forum, but as soon i get 15, i would love to talk to you on private.. Take care...

Meta refresh starts after the page has loaded. Even the page has only includes redirection code, js redirect is faster than meta redirect. Also, htaccess is the fastest redirection method, but it acts like php header redirect. So, what's the solution ? Using meta redirection and js redirection both. If user has disabled js, meta redirect will redirect user. If not, js will redirect user first.

meannn
 
Back
Top