Go Back   Poker Affiliate Programs - Affiliate Community for Poker Affiliates > Poker Affiliate Programs - Discussions for Poker Affiliates > Search Engine Optimization
Register VBay [0] FAQ Members List Calendar Search Today's Posts Mark Forums Read

Search Engine Optimization Better rankings in the search engines mean more money in our bank accounts. Share tips and strategies for SEO here.

Reply
 
Social Bookmarking Thread Tools Display Modes
  #11 ()  
Old 10-20-2008, 05:45 AM
Pokerhunt's Avatar
Pokerhunt Pokerhunt is offline
Senior Member
 
Join Date: Oct 2006
Posts: 266
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Quote:
Originally Posted by JackSante View Post
You can also use Redirect.

I use simple redirect script and links on site looks like http://mydomain.com/redir.php?affiliate_link

Using redirect scripti you can also track users going to pokerRooms. It's very usefull for rooms that don't track Clicks (like FullTilt and PokerStars. )
Can you post what the redirect script code looks like? also, how do you track the clicks with this?
__________________
Poker Freerolls/Guaranteed schedule on your own website
http://www.freerollsmonitor.com
Guaranteed Tournament Monitor
http://www.guaranteedmonitor.com
Gear Poker
http://www.gearpoker.com - Contact me for a great deal on Action Poker network!

B2B / Entraction Poker Room
http://www.nordicbookmakers.com - Contact me for a great affiliate deal on Entraction network
Reply With Quote
  #12 ()  
Old 10-20-2008, 11:49 AM
TRIPAAA's Avatar
TRIPAAA TRIPAAA is offline
Members
 
Join Date: Dec 2005
Posts: 224
Thanks: 0
Thanked 1 Time in 1 Post
Default

Here is a easy script to alter you can name it anything you want .php upload it to your public directory. You can alter it to include nofollow if you want.

PHP Code:
 // This script is to be used with the Affiliate Jump Tutorial at www.stevedawson.com/articles.php
/************************************************************************/
/* PHP Affiliate Jump Script                                             */
/* ===========================                                          */
/*                                                                      */
/*   Written by Steve Dawson - http://www.stevedawson.com               */
/*   Freelance Web Developer - PHP, MySQL, HTML programming             */
/*                                                                      */
/* This program is free software. You can redistribute it and/or modify */
/* but please leave this header intact, thanks                          */
/************************************************************************/
/*
Save this page as jump.php and when linking to this script use the following:
    XXXXXX 
Where XXXXXX is your merchant. 
*/
$m $_GET['m'];
if (
$m == "") {$link "http://www.yoursite.com/mobiles/";} // Default Blank
if ($m == "Just Phones") {$link "http://www.anysite.com/awclick.php?mid=97&id=38362";}
if (
$m == "UKPhoneShop") {$link "http://tracker.anysite.com/click?p=985&a=949731&g=5119";}

/*
To add more jump links, just copy and paste one of
the lines above and modify the $m and $link values
*/

header("Location: $link"); // Jump to the hiddden affiliate URL above
exit();
?> 
__________________
Learn Omaha Hi low Poker. More info about titan poker bonus code online.
Reply With Quote
  #13 ()  
Old 10-20-2008, 12:05 PM
TheShortStack's Avatar
TheShortStack TheShortStack is offline
Climbing into the saddle
 
Join Date: Jan 2008
Location: London
Posts: 436
Thanks: 0
Thanked 3 Times in 3 Posts
Send a message via MSN to TheShortStack
Default

Does including a 'no follow' in the .htaccess file serve the same purpose?
Reply With Quote
  #14 ()  
Old 10-23-2008, 09:59 AM
pokerforfree's Avatar
pokerforfree pokerforfree is offline
Dutch Moderator
 
Join Date: Aug 2006
Posts: 378
Thanks: 12
Thanked 7 Times in 7 Posts
Default

Thanks! I didn't know this and it's very helpful.

Quote:
Originally Posted by completepokerrules View Post
I would recommend the nofollow in the link and if using Google Analytics you can set it up to track the outbound links.
Reply With Quote
  #15 ()  
Old 10-24-2008, 03:45 AM
scottmc scottmc is offline
Member
 
Join Date: Dec 2006
Posts: 60
Thanks: 0
Thanked 1 Time in 1 Post
Default

Quote:
Originally Posted by TheShortStack View Post
Does including a 'no follow' in the .htaccess file serve the same purpose?
No, use robots.txt

For example
In .htaccess
RewriteRule ^goto/room1$ http://www.room1.com?affcode=XXXX [R=301,L]
RewriteRule ^goto/room2$ http://www.room2.com?affcode=XXXX [R=301,L]
RewriteRule ^goto/room3$ http://www.room3.com?affcode=XXXX [R=301,L]

In robots.txt
User-agent: *
Disallow: /goto/
Reply With Quote
  #16 ()  
Old 10-24-2008, 10:20 AM
completepokerrules's Avatar
completepokerrules completepokerrules is offline
Member
 
Join Date: Sep 2008
Posts: 54
Thanks: 0
Thanked 4 Times in 4 Posts
Default

Quote:
Originally Posted by scottmc View Post
No, use robots.txt

For example
In .htaccess
RewriteRule ^goto/room1$ http://www.room1.com?affcode=XXXX [R=301,L]
RewriteRule ^goto/room2$ http://www.room2.com?affcode=XXXX [R=301,L]
RewriteRule ^goto/room3$ http://www.room3.com?affcode=XXXX [R=301,L]

In robots.txt
User-agent: *
Disallow: /goto/
Good info. I was using the wp-affiliate wordpress plugin to do this but I think it may be overkill. I like your method. One could even use the Redirection plugin to avoid .htaccess.
Reply With Quote
  #17 ()  
Old 10-25-2008, 05:50 AM
webmacho's Avatar
webmacho webmacho is offline
Junior Member
 
Join Date: Oct 2008
Posts: 18
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Quote:
Originally Posted by completepokerrules View Post
I would recommend the nofollow in the link and if using Google Analytics you can set it up to track the outbound links.
Great! Thanks for this tip.
__________________
My Poker Blog
Reply With Quote
  #18 ()  
Old 11-03-2008, 07:22 AM
Pokerhunt's Avatar
Pokerhunt Pokerhunt is offline
Senior Member
 
Join Date: Oct 2006
Posts: 266
Thanks: 0
Thanked 0 Times in 0 Posts
Default

I use this:

PHP Code:
 
<? header("location: AFF LINK HERE"); ?>
<html>
<head>
<title>Untitled Document</title>
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
</body>
</html>
Any problems in using it like this?
__________________
Poker Freerolls/Guaranteed schedule on your own website
http://www.freerollsmonitor.com
Guaranteed Tournament Monitor
http://www.guaranteedmonitor.com
Gear Poker
http://www.gearpoker.com - Contact me for a great deal on Action Poker network!

B2B / Entraction Poker Room
http://www.nordicbookmakers.com - Contact me for a great affiliate deal on Entraction network
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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 On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
CanAffco Affiliate Bootcamp - CAP Euro London taracanaffco General Poker Affiliate Discussion 4 01-18-2008 08:18 PM
Selling in content link on a UK poker affiliate blog gtycoon Buy & Sell Advertising 0 01-16-2008 08:54 PM
mansion dont pay my money, and have blocked me, what should i do? tannari Mansion.com 11 12-16-2007 07:35 AM
Poker Affiliate 101 by Jeremy Enke Dave General Poker Affiliate Discussion 21 11-06-2007 09:10 PM
Poker affiliate Programs edmc General Poker Affiliate Discussion 8 05-27-2007 12:07 PM


All times are GMT -5. The time now is 04:43 AM.


Copyright 2008 PokerAffiliatePrograms.com


SEO by vBSEO 3.2.0