Google Inbound Links much higher than SEOMOZ
-
I just started here and really like everything the community and tools so far. One question. My SEOMOZ dashboard shows only one inbound link while Google Web Tools shows 300+. My site has been up for 3 months now and I'm curious about the lack of indexing. Any help, tips or feedback is greatly appreciated.
http://CrossTrainingandFitness.com
Robb Jarrett
-
When you say Google Web Tools I'm assuming you mean Google Webmaster Tools. Google have access to their entire index, so they can see all the backlinks they show in GWT (and some that they don't). Quite often this will be a number in excess of that shown by other tools.
If I run the URL through ahrefs, I see 653 backlinks from 14 domains.
SEOmoz's metrics are based based on their own, more limited data, which prioritises sites to decide which should or shouldn't make the cut (as I understand it). It is updated once every month or so. You will probably discover that most of the sites which link back to you so far aren't themselves in the Mozscape data, so aren't showing as backlinks in SEOmoz toolbar or OSE.
An additional point which I noted whilst prodding your site, is that your website shows for both www and non-www URLs. This is an SEO nono, is considered duplicate content (across the entire site in this case), and is watering down your rankings. In addition, it can skew the backlink count shown using various tools (though this doesn't seem to be the case here).
In your case, it appears redirecting to non-www will probably be best, as this is the URL Google has been indexing. Also appears you are using Wordpress, hopefully on a normal Linux/Apache server. If so, you should be able to use this rule in your .htaccess file.
removes www
RewriteCond %{HTTP_HOST} ^www.crosstrainingandfitness.com [NC]
RewriteRule ^(.*) http://crosstrainingandfitness.com/$1 [L,R=301]
-
Awesome info Riplash...thanks for the .htacess code. I'll put it in.
-
Hi Riplash
I'm new to this - how can I tell if my site:
www.martinspencephotography.co.uk also needs to redirect to martinspencephotography.co.uk?
Do I have any glaring problems?
Thanks
Martin
-
In your case your site is indexed with www, but is also available without, so I would use this rewrite rule instead, to ensure www is added every time.
adds www
RewriteCond %{HTTP_HOST} ^martinspencephotography.co.uk [NC]
RewriteRule ^(.*)$ http://www.martinspencephotography.co.uk/$1 [L,R=301]