Forum Moderators: open
I've read all I can in here about server side redirects, but not sure I see the answer to my question.
We have a content site that makes some revenue from affiliate programs. Let's say the site has 50 pages. Half of the pages carry an affiliate link that goes to the same external target page, served by the partner. Problem is, if the target URL changes, or if we replace that affiliate with a different one, we're faced with changing that same link on 25 pages.
One solution could be to change all those links to point to an internal page (rather than the current external target), then use a server side redirect to take users to the external target. That way we only have to change ONE link, not 25. This solution would also obviously keep more PR inside our own site...
But, I don't want to get in trouble with the SE's.
OK? Not OK? Love to hear any thoughts.
Wackmaster
Good to know you think it's safe.
Regarding the robots.txt file, it was my understanding that if it's a server side redirect, the internal page that we'd be pointing to (i.e., the page that all of our pages point to, that then redirects to the external target page) would actually never get seen by the bots. Is that incorrect?
The iFrame, though, will be ignored by old Netscape and some other browsers.
<iframe src="myfile.html" hspace=0 vspace=0 frameborder=0 scrolling=no></iframe>
Thanks. Actually the redirect is handled by our hosting company. We just give give URL's for 'redirect from' (our page) and 'redirect to' (external target page). I guess I could contact them and see how they execute this.
In any event, it sounds like with or without the robots.txt file, we'll be in pretty good shape if we handle it this way...
thanks for jumping in. I've read in other places that the iFrame approach could be interpreted as spam. No?
Just about every adserver network serves ads in an iFrame.
The important point is that Google does not consider the contents of an iFrame as part of the page it appears in. If you used some form of server side includes (e.g. .shtml, php, asp) than the content is part of the page because the web server integrates it before delivery.
That said, if we do it that way, are all agreed that server side redirects are pretty safe anyway?
Appreciate the input.