Reply
Redirecting Your AzoogleAds Links
Old 10-01-2006, 12:41 AM Redirecting Your AzoogleAds Links
Ultra Talker

Posts: 408
Redirecting Your AzoogleAds Links
Tutorial by Lucas Lemanowicz

Azoogle, like other CPA affiliate companies, requires that users redirect their offer links through their own system. This can be very beneficial as it will most likely increase your clickthrough rate, and you will be able to track your own statistics to optimize your ad placement.

So how do you do that? Well, there are many ways. The first way is to use one of those public URL redirectors the internet is oversaturated with:However, this might not be the solution you are looking for because the links are off-site and visitors might be hesitant to follow them. If that is your concern you can use PHP and Apache ModRewrites to create your own redirectors:

PHP Code:
<?php

header
('HTTP/1.1 301 Moved Permanently'); 
header('Location: http://www.your-ref-link.com/ref.php?var=123'); 

?>
Save the above file as a PHP file (for example free-ringtones.php) and upload it to your server. Then open a new file (which will be the .htaccess file) and type the following:

Link Structure: site.com/free-ringtones
Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^free-ringtones$ free-ringtones.php [L]
</IfModule>
Link Structure: site.com/free-ringtones.html
Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^free-ringtones\.html$ free-ringtones.php [L]
</IfModule>
Link Structure: site.com/free-ringtones.htm
Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^free-ringtones\.htm$ free-ringtones.php [L]
</IfModule>
If you have multiple offers, copy the second last line as many times as you want and change it accordingly:

Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^free-ringtones$ free-ringtones.php [L]
RewriteRule ^free-dog-biscuits$ free-dog-biscuits.php [L]
RewriteRule ^get-a-free-goat$ get-a-free-goat.php [L]
</IfModule>
That's where I will leave you off. I hope that this short tutorial was simple enough for even the most technophobic web earners out there. If you still have questions feel free to give me a shout.
Lucas3677 is offline
Reply With Quote
View Public Profile Visit Lucas3677's homepage!
 
When You Register, These Ads Go Away!
     
Old 10-11-2006, 09:14 PM
Junior Talker

Posts: 1
Name: Johnny
Awesome tutorial mate, Thanks!
Arcade-Master is offline
Reply With Quote
View Public Profile
 
Old 10-12-2006, 11:06 AM
Otherjohn's Avatar
Junior Talker

Posts: 1
Name: John
Another suggestion for users that use Joomla on their site. is to use the free tool open-sef.com which allows you to do the same as above but with an admin.
john
Otherjohn is offline
Reply With Quote
View Public Profile
 
Old 10-24-2006, 11:48 PM
Cyrix's Avatar
Junior Talker

Posts: 9
I am currently using this method on my sites already. Great suggestion for those who do not know about it.
__________________
I am always up for exchanging methods and ideas for promoting CPA, PM me.
Cyrix is offline
Reply With Quote
View Public Profile
 
Old 12-16-2006, 07:44 AM
Junior Talker

Posts: 11
Lucas, I have been using the redirect script that ClickBank recommends - it's below. But I would be most interested in anybody's comments as to whether mod rewrites are a superior way to handle redirects.

The code below (with URL replaced by the affiliate link in all 3 places) would be saved as domain.com/offer1.html or similar.

Gary

--

<html>
<head>
<title>Loading...</title>
<meta http-equiv="refresh" content="3;URL=
URL
">
<script>url='
URL
';
if(document.images) { top.location.replace(url); }
else { top.location.href=url; }
</script>
</head>
<body>Loading <a href=
URL
>this site</a> now...
</body>
</html>
eprofitnews.org is offline
Reply With Quote
View Public Profile Visit eprofitnews.org's homepage!
 
Old 12-25-2007, 02:06 AM
Junior Talker

Posts: 1
So why isn't this okay for a typical Azoogle link:

Code:
<?php
header( 'Location: affiliate link' ) ;
?>

Do you have a proposed link structure for using a subdomain? subdomain(dot)mysite(dot)com
:no:

Thanks!
lhd333 is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Redirecting Your AzoogleAds Links
 

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML

 


Page generated in 0.14657 seconds with 13 queries