728x90

I guess you are using Google Webmaster Tools and looking at duplicate content issues.

“Search Appearance” >> “HTML Improvements” >> “Duplicate title tags”

In a perfect SEO world you wouldn’t have any duplicate title tags, but the larger a site gets, more likely you’ll have duplicates.

 

I never use tags see Why Creating Lots of Categories and Tags is Anti-SEO.

If you delete all your tags a simple 301 redirect assuming you didn’t change your tags base on the WordPress permalinks page is:

RewriteEngine On
RewriteRule ^tag/(.*)$ http://example.com/ [R=301,L]

That would 301 redirect all tags (everything indexed under example.com/tag/ (all tags have the /tag/ slug by default) to the home page of example.com

 

If you have changed the tag base on the permalinks page change tag to what you use.

If you’ve been using the monthly archive widget another good 301 redirect rule is:

RewriteEngine On
RewriteRule ^2013/(.*)$ http://example.com/ [R=301,L]
RewriteRule ^2014/(.*)$ http://example.com/ [R=301,L]

 

This would 301 redirect 2013 and 2014 dated archives to home. Dated archives have no SEO value, waste link benefit, so if you delete the monthly archive widget and/or the calendar widget add the above. Go back as far as your site’s existed, one line for each year.

 

Always check you haven’t got anything important indexed under a domain with a site search

site:https://stallion-theme.co.uk/2014/

and

site:https://stallion-theme.co.uk/tag/

This one shows my categories:

site:https://stallion-theme.co.uk/responsive/

Under “Settings” >> “Permalinks” I’ve changed my Category base to “responsive”.

I wouldn’t want to use a 301 redirect rule which included “RewriteRule ^responsive/(.*)$ ….” since it would 301 redirect all my indexed categories which I want spidered and indexed!

Also check with Google Webmaster Tools and/or Google Analytics none of your tags generate search engine traffic. If you find a few are pulling in traffic either keep those tags or 301 redirect them to the most relevant webpage on the site (similar SERPs).

 

If you had a tag called “Awesome” that had SERPs and a category called “Awesome Stuff” a possible solution would be delete all the tags and use this:

RewriteEngine On
RewriteRule ^tag/awesome/(.*)$ http://example.com/category/awesome-stuff/ [R=301,L]
RewriteRule ^tag/(.*)$ http://example.com/ [R=301,L]

This would 301 redirect the Awesome tag to the Awesome Stuff category conserving SEO benefit. All other tags 301 to home.

This way you can conserve any ranking value from tags that have SERPs and redirect the rest to home.

In my experience tags tend not to generate traffic, especially single word tags. I’ve bought dozens of WordPress blogs with loads of tags I’ve deleted and never had to use the above code to conserve traffic. Though being a perfectionist I setup those types of 301 redirects anyway, I look for the most relevant webpage for something I’ve deleted because I can :-)

David

  More Comments by SEO Gold Services

  • SEO Tutorial Broken W3 Total Cache Plugin HTML Cache : The Meta Tags article worked as expected in FireFox (I was logged into WordPress), but didn’t work in Google Chrome (not logged into WordPress in …

    Continue Reading SEO Tutorial

  • SEO Tutorial Search Engine Traffic Recovery : Glad to hear your search engine traffic is recovering, the adult niche is a great niche to be in for high traffic, sex/porn etc… will …

    Continue Reading SEO Tutorial

  • SEO Tutorial .htaccess 301 Redirect Rules : Update: did a brain fart, the $1 format was correct. Think I need more sleep :-)

    so

    RewriteEngine On
    RewriteRule ^test/(.*)$ http://example.com/$1 [R=301,L]
    RewriteRule ^test2/(.*)$ http://example.com/$1 [R=301,L]

    Is correct.

    Bugger, I …

    Continue Reading SEO Tutorial

  • SEO Tutorial How to 301 Redirect a Directory : You add the .htaccess file 301 redirects to the domains you are redirecting FROM (domain1 and domain2 in your example) NOT the domain you are …

    Continue Reading SEO Tutorial

  • SEO Tutorial 301 Redirecting Duplicate Content : Easy SEO mistake to make.

    Good news is Google has probably taken the duplicate content as duplicate and ignored it, but you still should sort it …

    Continue Reading SEO Tutorial

+ Recent posts