Go Back   WarriorForum - Internet Marketing Forums > The Warrior Forum > Adsense / PPC / SEO Discussion Forum
Register Blogs FAQ Social Groups CalendarHelp Desk

Reply
 
LinkBack Thread Tools
Old 03-11-2011, 01:32 PM   #1
HyperActive Warrior
War Room Member
 
Join Date: Jun 2008
Location: miami,fl
Posts: 360
Thanks: 66
Thanked 30 Times in 27 Posts
Default Should I check Use noindex for Tag Archives

Hi Warriors
I have a page indexed > (http://mysite.com/mypost) and also http://mysite.com/tag/mypost The same post shows up twice, one with /tag/ one without when I search site:http://mysite.com
Is this a duplicate content?? Can I get penalized for this?

In the All in one plugin should I check Use noindex for Tag Archives to avoid this or doesn't matter.
Thanks

baby_butler2002 is online now   Reply With Quote
Old 03-11-2011, 01:46 PM   #2
HyperActive Warrior
War Room Member
 
ValentinJed's Avatar
 
Join Date: May 2009
Posts: 187
Thanks: 46
Thanked 36 Times in 29 Posts
Contact Info
Send a message via Skype™ to ValentinJed
Default Re: Should I check Use noindex for Tag Archives

I always nofollow tags, archives, terms of use and privacy policy. Sometimes even categories.
ValentinJed is offline   Reply With Quote
Old 03-11-2011, 10:14 PM   #3
HyperActive Warrior
War Room Member
 
ElMundodelExito's Avatar
 
Join Date: Nov 2009
Location: Flying from Florida to Italy
Posts: 273
Thanks: 43
Thanked 29 Times in 26 Posts
Default Re: Should I check Use noindex for Tag Archives

That's a really good question, sometimes I wonder that too.

Valentin, Why do you nofollow Terms of use and Privacy Policy?

I am not judged by the number of times I fail, but by the number of times I succeed. And the number of times I succeed Is in direct proportion to the number of times I can fail and keep trying.
Ven a El Mundo del Éxito!!>Tu centro de Motivacion, Weight Loss Help
ElMundodelExito is offline   Reply With Quote
Old 03-12-2011, 07:21 PM   #4
HyperActive Warrior
War Room Member
 
ElMundodelExito's Avatar
 
Join Date: Nov 2009
Location: Flying from Florida to Italy
Posts: 273
Thanks: 43
Thanked 29 Times in 26 Posts
Default Re: Should I check Use noindex for Tag Archives

I would like to know the opinons of other people about this also.

I am not judged by the number of times I fail, but by the number of times I succeed. And the number of times I succeed Is in direct proportion to the number of times I can fail and keep trying.
Ven a El Mundo del Éxito!!>Tu centro de Motivacion, Weight Loss Help
ElMundodelExito is offline   Reply With Quote
Old 03-12-2011, 07:29 PM   #5
WarriorWill.com
War Room Member
 
WillR's Avatar
 
Join Date: Jun 2010
Location: Australia
Posts: 6,110
Thanks: 639
Thanked 3,462 Times in 1,664 Posts
Social Networking View Member's FaceBook Profile 
Default Re: Should I check Use noindex for Tag Archives

Quote:
Originally Posted by ValentinJed View Post
I always nofollow tags, archives, terms of use and privacy policy. Sometimes even categories.
I have been pondering about this lately as well. What to do with pages such as privacy and terms of use that I am using on a lot of different sites and have virtually the same content.

In the 'Platinum SEO' plugin there are 4 options I think for each post/page you create.

index, follow
index, nofollow
noindex, follow
noindex, nofollow

I would have thought the best thing to do for these types of pages is to use 'noindex, follow'. This way the search engines can still go through the page and look at any links pointing out of the page but you are telling them not to index that page because it is of no real value to the site.

What is the general consensus here?

WillR is online now   Reply With Quote
Old 03-13-2011, 09:25 AM   #6
Advanced Warrior
War Room Member
 
Join Date: Jan 2007
Location: 8.39 light minutes from Helios
Posts: 505
Thanks: 32
Thanked 57 Times in 32 Posts
Contact Info
Send a message via Skype™ to rahmat
Default Re: Should I check Use noindex for Tag Archives

Quote:
Originally Posted by baby_butler2002 View Post
Hi Warriors
I have a page indexed > (http://mysite.com/mypost) and also http://mysite.com/tag/mypost The same post shows up twice, one with /tag/ one without when I search site:http://mysite.com
Is this a duplicate content?? Can I get penalized for this?

In the All in one plugin should I check Use noindex for Tag Archives to avoid this or doesn't matter.
Thanks
Do not check "Use noindex for Tag Archives"

In this case, your tag pages will be indexed by search engine.

It is not duplicate content, since you only have excerpt on your tag pages. Your blog posts are the main content.

-Rahmat-
rahmat is offline   Reply With Quote
Old 03-18-2011, 08:26 PM   #7
HyperActive Warrior
War Room Member
 
Join Date: Jun 2008
Location: miami,fl
Posts: 360
Thanks: 66
Thanked 30 Times in 27 Posts
Default Re: Should I check Use noindex for Tag Archives

So my understanding is this will not effect my rank?? can anyone confirm this please

baby_butler2002 is online now   Reply With Quote
Old 03-18-2011, 08:52 PM   #8
SEO Strategist
War Room Member
 
yukon's Avatar
 
Join Date: Jun 2010
Posts: 6,532
Thanks: 355
Thanked 1,992 Times in 1,273 Posts
Default Re: Should I check Use noindex for Tag Archives

One of my Wordpress sites (as an example) has 159 pages "blog post pages", in GWT (Google Webmaster Tools). GWT says I have 159 out of 159 pages indexed in Google SERPs, that's 100% of my pages are in Google search pages.

When I do a site:domain[.]com I get 253 results in Google search. Those extra pages are both Categories + Tags.

This is how I get all my pages indexed in Google SERPs.

I use a unique canonical tag for every single page on my sites.

Here is my php code (goes in the header.php file):


Code:
<?php if ( is_home() ) { ?>
<link rel="canonical" href="http://your_domain_here.com/" />
<?php } ?>

<?php if ( is_category() ) { ?>
<link rel="canonical" href="http://your_domain_here/<?php  = get_the_category(); echo ->category_nicename; ?>/" />
<?php } ?>

<?php if ( is_tag() ) { ?>
<link rel="canonical" href="<?php echo get_tag_link(); ?>" />
<?php } ?>

<?php if ( is_page() ) { ?>
<link rel="canonical" href="<?php the_permalink() ?>" />
<?php } ?>

<?php if ( is_single() ) { ?>
<link rel="canonical" href="<?php the_permalink() ?>" />
<?php } ?>

I don't run any seo plugins that will mess with my header.php, I code all my own php/seo.

Bottom line is, I have 159 actual content pages, yet I have 253 pages in Google search.

Check your sites source code when testing, to verify the canonicals are correct.

yukon is offline   Reply With Quote
Old 03-18-2011, 09:49 PM   #9
HyperActive Warrior
War Room Member
 
ElMundodelExito's Avatar
 
Join Date: Nov 2009
Location: Flying from Florida to Italy
Posts: 273
Thanks: 43
Thanked 29 Times in 26 Posts
Default Re: Should I check Use noindex for Tag Archives

Quote:
Originally Posted by rahmat View Post
It is not duplicate content, since you only have excerpt on your tag pages. Your blog posts are the main content.
I think this is the information that I was looking for.

I am not judged by the number of times I fail, but by the number of times I succeed. And the number of times I succeed Is in direct proportion to the number of times I can fail and keep trying.
Ven a El Mundo del Éxito!!>Tu centro de Motivacion, Weight Loss Help
ElMundodelExito is offline   Reply With Quote
Old 05-19-2011, 05:07 AM   #10
Wadeinni
 
wadeinni's Avatar
 
Join Date: Dec 2009
Posts: 10
Thanks: 0
Thanked 2 Times in 2 Posts
Social Networking View Member's Twitter Profile  View Member's YouTube Profile
Default Re: Should I check Use noindex for Tag Archives

I still don't think this is definitive. I'm having the same issue right now on two of my blogs. Does anyone know what Google officially recommends?

Quote:
Originally Posted by ElMundodelExito View Post
I think this is the information that I was looking for.

Online guerrilla marketing for start-up businesses
wadeinni is offline   Reply With Quote
Old 06-16-2011, 03:45 AM   #11
Warrior Member
 
Join Date: Jun 2011
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: Should I check Use noindex for Tag Archives

Whenever you ask this question about whether to no-index your category pages and tag archives. You will surely get 2 kinda reply, some will say to index and some will ask you to add no-index. Every single forum and every single thread about this issue, you will find contradicting replies.

I was extremely confused before now have come to my own conclusions and it works.

1.Honestly though, you want Google to crawl your tag archives, or it has no other purpose than improving site navigation. But you need to keep in mind that you need to have only excerpts in the tag archives. If you are having full post on the archives pages its gonna be bad(duplicate content). EXCERPTS are must for tags and category pages if you want Google to index em.

2. Don't add too much tags, it will surely piss Google. My general rule of thumb is 3 to 4. Reusing tags for multiple posts is also recommended. For instance, if this a wordpress post, i will be adding tags like 'no-index tags wordpress','no-index categories wordpress','configure all in one seo plugin'. Or stuff like that, don't add more by mixing the words around, take a few more seconds while writing a post and come up with tags that makes sense.(Experts forgive me, i'm writing this for noobs, so have to be detailed).

3. Categories: If you want to index Categories you need to keep an important thing in mind. See, how much categories you have and how much sub-categories you have.
Say if i have a category called Automobile and a sub category called bikes. If i post any thing is 'bikes'. It will also show in Automobile category page. So if you have lot of sub categories under every primary category, you don't want Google to crawl. So it all comes down to how much categories you have and how the category hierarchy is.

On a side note, i do add no-index to a pages like the general archives(Date based) and author pages, login page.

Hope this helps.

Peace.
gowdemon is offline   Reply With Quote
Reply

  WarriorForum - Internet Marketing Forums > The Warrior Forum > Adsense / PPC / SEO Discussion Forum

Tags
archives, check, noindex, tag

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -6. The time now is 05:11 AM.