How can I convert an affiliate link from: original link: operator'ssite.com/yourname to: mysite/operator'site ??
If you want to hide your affiliate link with another domain, then you could do a 301 redirect from your domain name to your affiliate link.
Just make a page named "operator's site.html" and include this piece of code in the document: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>Your Page Title</title> <meta http-equiv="REFRESH" content="0;url=http://www.the-domain-you-want-to-redirect-to.com"></HEAD> <BODY> Optional page text here. </BODY> </HTML> Hope this helps!
There are lots of ways to do it. If it's a wordpress blog, you can use a plugin like Ninja Affiliate to do it easily. Otherwise you can use a URL redirect script, or just put some redirect code in your .htaccess file. Read this: http://www.seobook.com/archives/001935.shtml
Learn about mod_rewrite. If you are hosted on an apache webserver, mod_rewrite should allow to redirect URLs.
I actually want to use it in blogger. Can I put a code inside the "post" html code? And how would that be? It's an affiliate link connected with an image. When I get to press the image, it appears and it's: www.affiliatesite.com/myid Code (markup): Can I do this look like: www.affiliatesite.com Code (markup): ? Or something like this: www.mysite.com/affiliatesite Code (markup): ? Thank you very much for your answers!