I went through previous question and answers here in the forum about this and it seems most were user errors....
Below is how my .htaccess file looks. I've tick the cloak link option in WP Robot and everything looks like the documentation describes "http://mydomain.com/go/Link_Title/18/1"
When I click the affiliate links ebay,amazon,clickbank the page just refreshes. It stay dormant on that page. No errors just refreshes.
# WP Robot Link Cloaking START
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^go/([^/]*)/([0-9]+)/([0-9]+)/?$ http://MyDomain.com/wp-content/plugins/WPRobot/cloak.php?post_id=$2&link_num=$3&cloaked_url=$0 [L]
RewriteRule ^go/([^/]+)[/]?$ http://MyDomain.com/wp-content/plugins/WPRobot/cloak.php?name=$1&cloaked_url=$0 [L]
</IfModule>
# WP Robot Link Cloaking END
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Thanks in advance!
