Forum Moderators: Robert Charlton & goodroi

Message Too Old, No Replies

Google and php redirects. Stuck in 2006 Recommendations for 2010?

         

Mobillica

12:00 pm on Aug 15, 2010 (gmt 0)

10+ Year Member



Hi guys Ive been using a simple php redirect script for a number of years but now I think its a bit out of date re SEO.

For example:
http://xwwwx.mysite.com/mylinks/merchantdirectory.php?id=Merchant1


I would then disallow 'mylinks' directory in robots.txt

I am now finding that the php urls above are being followed and included in the 'supplemental' index when using the site command.

I've seen a method whereby a user clicks on a link ie. mysite.com/linktomerchant on their site

then is transported to a page like this with the code:

<html>

<head>
<meta name="robots" content="noindex,nofollow,noarchive" />
</head>
<body>

<noscript>
<p>You currently have javascript disabled - click the link below to continue</p>
<p><a href="http://www.affiliatetrackingcodegoeshere">Merchant1</a></p>
</noscript>

<script>window.location.href='http://www.affiliatetrackigncodegoeshere';</script>
<!--<script>alert('http://wwwaffiliatetrackingcodegoeshere');</script>-->

</body>

</html>


Each merchant has a page like this.

Can someone explain what this method of redirect/affiliate code masking is and does it get the 'green light' re Google seo?

Im still stuck in 2006 and haven't really kept my finger on the pulse re google and redirects. Are php redirects still the best way or do people simply now use the urls of the merchants and no follow them?

Which is the most preferred method to use in 2010?

Thanks

tedster

5:47 pm on Aug 15, 2010 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



urls above are being followed and included in the 'supplemental' index when using the site command.

They're only being shown as a URL - right? The content is still not actually spidered. And you can request URL removal from within Webmaster Tools for any URL that is Disallowed in robots.txt

As far as I know the approach you're using is still fine - Matt Cutts even mentioned it in a recent video. Also, any kind of scripting is OK within the robots Disallowed directory - php or whatever you've got. It's not going to be crawled.

Mobillica

8:04 am on Aug 16, 2010 (gmt 0)

10+ Year Member



Thanks for the reply.

Yes they are only shown as a URL but with meta title of the merchant im linking to.

The title showing up in the supp index are the title meta tags of the merchants.

So it appears in the supp index as this

http://xwwwx.mysite.com/mylinks/merchantdirectory.php?id=Merchant1 - it uses the title meta tags of the merchant im linking to. So, for example, 'Welcome to Walmart'


I know what the supp index is but not entirely sure how having many pages in it affects rankings, and they will be duplicate title tags of the merchants themselves so its probably not healthy to have 30 or 40 URLS like this.

URL removal from within Webmaster Tools for any URL


Is this the best way to make sure that google does not index or follow these links?

Thanks