vBulletin SEO Forums

SEO

vBulletin Search Engine Optimization

Buy vBSEO Now! HACKER SAFE certified sites prevent over 99.9% of hacker crime.
ne nw
New vBSEO Discount Level for Network Builders Meet vBSEO Team in New York (Nov. 3rd & 4th) vBSEO 3.2.0 GOLD Has Landed Success with vBSEO = 600ore Web Visitors + $1400 in a Day! Crawlability Inc. Files for SEO Technology Patent
se sw

Possible duplicate content

This is a discussion on Possible duplicate content within the General Discussion forums, part of the vBSEO SEO Plugin category; I was wondering what you think about these two scenarios and what could be done about it: 1) A malicious ...

Go Back   vBulletin SEO Forums > vBSEO SEO Plugin > General Discussion

Enhancing 80 million pages.

Register FAQ Members List Social Groups Calendar Search Today's Posts Mark Forums Read
  #1  
Old 11-02-2005, 02:50 PM
Member
 
Join Date: Oct 2005
Posts: 70
Possible duplicate content

I was wondering what you think about these two scenarios and what could be done about it:

1) A malicious user sends SEs lots of links like:
/forum/thread100-page2234234.html,
/forum/thread100-page3634634.html,
/forum/thread100-page4463461.html etc.
... which all show the same page (the last page in a thread). So SE has a couple of different URLs in its index with the exact same content. OK, you'll say that all these pages are orphaned and will just go to the supplemental index (and hope that this will not harm rankings). But what about this:

2) A malicious user sends Google lots of links like:
/forum/showthread.php?t=45&pp=2,
/forum/showthread.php?t=34&pp=2,
/forum/showthread.php?t=89&pp=2 etc.

... which all rewrite perfectly of course, but they all show a different number of posts per page than default setting. The problem is not only the possible double content penalty on the page itself, but also that SE will follow links to prev- and next pages of a thread and this may also lead to more double content issues (as some links might all show the last page in a thread). And this time, I don't think SEs will consider these URLs orphaned.

I understand that this is how vBulletin works and it's not vBSEO's fault, but could it be solved somehow?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2  
Old 11-02-2005, 04:59 PM
Member
 
Join Date: Oct 2005
Posts: 70
Re: Possible duplicate content

I may have found a solution. Using this script in showthread and forumdisplay pages, all rewrited URLs with query string will not be indexed and thus preventing double content issues.

For instance, an URL like forum/forumdisplay.php?f=8&page=3&sort=lastpost&order=&p p=20&daysprune=-1 rewrites to something like forum/forum8/index3.html?sort=username&order=&pp=20&daysprune=-1. Let's say that this sorting is not the same as our current default sorting. This just confuses the spider and can lead to double content penalty, I think, escpecially if you changed the default sorting settings. What this script does is insert nofollow,noindex tags into it so it's not indexed. It doesn't add these tags in "normal" pages, like forum/forum8/index3.html.

PHP Code:
ob_start();
//print_r($_GET);
$matchingArr["t"]="set";
$matchingArr["page"]="set";
$matchingArr["threadid"]="set";
$matchingArr["pagenumber"]="set";
$matchingArr["f"]="set";
$matchingArr["forumid"]="set";
////////////////////////////////
$bDisplayMeta 0;
foreach (
$_GET as $key1 => $myKey
{
   
$bOk 0;  
   foreach (
$matchingArr as $key2 => $myKey2
 if (
$key1==$key2)
    
$bOk=1;
   if (
$bOk==0)
      
$bDisplayMeta 1;   
}
if(
$bDisplayMeta) {
echo 
"<META NAME=\"ROBOTS\" CONTENT=\"NOINDEX, NOFOLLOW\" />";
}
$meta_robots ob_get_contents();
ob_end_clean(); 
What do you guys think?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3  
Old 11-03-2005, 10:00 PM
Oleg Ignatiuk's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Oleg Ignatiuk
Join Date: Jun 2005
Location: Belarus
Posts: 21,450
Blog Entries: 1
Re: Possible duplicate content

Hello PageUp!

Thank you for this suggestion.

A new feature has been added to vBSEO to avoid duplicate content (will be available in the next release) that will make a 301-redirection to a *clean* URL when SE bot is requesting a link with custom page size parameter ("pp").
Normal users will still be able to browse forums with different page sizes.

When the thread page higher than a total count of pages is requested, it is *redirected* to the last page now.
__________________
Oleg Ignatiuk / Crawlability Inc.
vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD

6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You.


Last edited by Oleg Ignatiuk; 11-03-2005 at 10:18 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4  
Old 11-04-2005, 04:08 AM
Member
 
Join Date: Oct 2005
Posts: 70
Re: Possible duplicate content

Sounds perfect! Thanks for taking my concerns seriously.

But what about if the SE bot requests a forumdisplay page with custom daysprune, sort and order settings (e.g. forumdisplay.php?f=8&page=3&sort=lastpost&order=as c&p p=20&daysprune=-1)? Will that redirect to a clean URL too?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5  
Old 11-04-2005, 01:38 PM
Oleg Ignatiuk's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Oleg Ignatiuk
Join Date: Jun 2005
Location: Belarus
Posts: 21,450
Blog Entries: 1
Re: Possible duplicate content

The same is applied to "sort", "order", "daysprune" parameters.
__________________
Oleg Ignatiuk / Crawlability Inc.
vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD

6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

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 On
Pingbacks are On
Refbacks are On


Similar Threads

Thread Thread Starter Forum Replies Last Post
Possible duplicate content issue? MSJA General Discussion 5 07-01-2006 09:06 AM
Matt Cutts says Honest site owners don't really have to worry about duplicate content BamaStangGuy General Discussion 24 06-05-2006 03:01 PM
2006 SES Conference - Duplicate Content Session msimonds Member Articles 0 03-07-2006 05:04 PM
Question regarding linking to styles ? duplicate content s2kinteg916 General Discussion 0 11-11-2005 12:41 AM


All times are GMT -4. The time now is 12:53 PM.


Powered by vBulletin Version 3.8.0 Beta 3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.5 ©2008, Crawlability, Inc.