Or by meta tag (change 6 to number of seconds for a redirection to start, and change website.com to a location where it should redirect): I don't know if it's allowed by Clickbank... I've never used it.
Thanks, The server I'm using doesn't support PHP so I'm gonna try this: <meta http-equiv="refresh" content="6;URL=http://website.com" /> Thanks for the help
The meta tag worked, however the you have to wait few seconds for the redirect to take action, I tried also: <meta http-equiv="refresh" content="0;URL=http://website.com" /> And I still had to wait a few seconds, any faster way to redirect? (no php) EDIT: <meta http-equiv="refresh" content="0;URL=http://website.com" /> redirects after about a second which is good enough for me, However I first tried it with opera and it redirected after 5-6 seconds, but with Firefox and IE it works well
I'm not sure about that - I believe that if you put there 0 the redirect should start immidiately... maybe it just takes some time for server read the code...
thanks for posting this redirect script. I put it under my <title> and above my </HEAD> It works, so I guess that is the proper place to put it? Does anyone know if this redirect script can be geotarged? I have a redirect for USA and another link for Canada.
the best method for a permanent redirect is to use a 301 in an .htaccess file. create an empty text file in the root of the page you want to redirect. name it .htaccess put this code in it. RewriteEngine On RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^(.+) - [PT,L] Redirect 301 /myoldpage.html http://www.mynewsite.com/about Redirect 301 /anotheroldpage.html http://www.mynewsite.com/anotherpage Code (markup): this is the best to redirect a site.