How do I redirect from new domain to affiliate link

sommerof69

Registered Member
Joined
Jun 14, 2010
Messages
57
Reaction score
16
Hi!
I would like to know how I can redirect to an affiliate link, from a new domain I will buy.
So bassicly I want to buy a domain and let it point or redirect to one of my affiliate links.
How is it done the most easy way?
Thank you.
 
easy.. just go to your domain control panel and select the redirect link or forward domain and put in the affiliate link you want to redirect to.

or if you having hosting do this...Login to Cpanel > Redirects > setup 301 redirect, fill in the blanks. That's all.

Easier just to do it through your domain panel....

http://support.hostgator.com/articles/cpanel/creating-a-url-redirect
 
Go in to FTP, create a file called index.php

Put this in the file:

PHP:
<?php
$url = ""; //Put the link to your aff in the quotations
header("Location: " . $url);
exit();
?>
 
Thank you guys!
Just entered the new url in the control panel, there were a space to fill in the url I wanted to redirect to.
I thought it was more complicated.
 
Use brad's URL redirector, that will work without breaking any affiliate tos.
 
some registars have option "free dns forwarding" , you can put your aff link here
 
Use a php redirect.

create a file called index.php and use the code below

<?php
header("location: YOUR AFFILIATE LINK HERE");
?>

ftp the index.php to the root of your domain
 
Is it better to do this in control panel, or in the domain registrar?
 
You need to create an index.html like that:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>THE TITLE OF YOUR SITE</title>
<meta http-equiv="REFRESH" content="0;url=YOURAFFILIATELINK"></HEAD>
<BODY>
</BODY>
</HTML>
 
How much traffic can you redirect this way? Could you redirect 20k-50k an hour?
 
Everyone who visits the page will be redirected, 1 or 1 million.
 
Everyone who visits the page will be redirected, 1 or 1 million.


So if you send 1million people to redirect through a bit.ly URL, they will not stop this or curb this in any way?

If this is true it's fantastic.
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>THE TITLE OF YOUR SITE</title>
<meta http-equiv="REFRESH" content="0;url=YOURAFFILIATELINK"></HEAD>
<BODY>
</BODY>
</HTML>

can i also add my keywords and site description to this script ? iv been using this kind of script to redirect to my money site and its on 1st page of google, but it shows an empty description box except for my affiliate url which is rather ugly. when iv tried to enter my keywords and description the file wont work at all. i dont know what im doing wrong.
 
Back
Top