Results 1 to 6 of 6

Duplicate content with blog comments link

This is a discussion on Duplicate content with blog comments link within the Troubleshooting forums, part of the vBSEO SEO Plugin category; Hi, I have VB 4 Suite and my blog comments (linked in the widget) point to a link like: Code: ...

  1. #1
    Member
    Real Name
    Galerio
    Join Date
    Jan 2011
    Posts
    47
    Liked
    4 times

    Duplicate content with blog comments link

    Hi,
    I have VB 4 Suite and my blog comments (linked in the widget) point to a link like:
    Code:
    blog.forum.com/comments/comment183.html#comment183
    but this is a page with the same content of the original blog page that has a link like:
    Code:
    [user-name].forum.com/blog/title.html
    I've checked your blog and I've seen that the links of comment widget point to a url like mine, but then it is redirected to the blog link avoiding duplicated content. I'd like o have this 301 redirect too.
    How to do it?

  2. #2
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    23,111
    Liked
    622 times
    Blog Entries
    4
    Blog comment urls are 301 redirected to original blog URL
    Mert Gökçeimam / Crawlability Inc.

    vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
    Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!


    Twitter:@Depkac
    Personal Blog : Mert Gökçeimam

  3. #3
    Member
    Real Name
    Galerio
    Join Date
    Jan 2011
    Posts
    47
    Liked
    4 times
    Seems not mine:
    Code:
    http://blog.1e2.it/comments/comment183.html#comment183
    How can I enable it?

  4. #4
    vBSEO Staff Brian Cummiskey's Avatar
    Real Name
    Brian Cummiskey
    Join Date
    Jul 2009
    Location
    btwn NYC and Boston
    Posts
    12,789
    Liked
    657 times
    Blog Entries
    2
    What is your thaccess file contents?

  5. #5
    Member
    Real Name
    Galerio
    Join Date
    Jan 2011
    Posts
    47
    Liked
    4 times
    I have theese rules in the htaccess root:

    Code:
    RewriteCond %{HTTP_HOST} !^www\.
    RewriteCond %{HTTP_HOST} ^(.+)\.1e2\.it
    RewriteRule ^.*$ forum/vbseo.php [L,QSA]
    that give me the abulity to use a subdomain for each username of my forum that is in /forum folder, and then in /forum I have this htaccess:

    Code:
    RewriteCond %{QUERY_STRING} f=([0-9]+)
    RewriteRule viewforum\.php vbseo301.php?action=forum&oldid=%1 [L]
    
    RewriteCond %{QUERY_STRING} t=([0-9]+)
    RewriteRule viewtopic\.php vbseo301.php?action=thread&oldid=%1 [L]
    
    RewriteCond %{QUERY_STRING} f=[0-9]+&p=([0-9]+)
    RewriteRule viewtopic\.php vbseo301.php?action=post&oldid=%1 [L]
    
    RewriteCond %{QUERY_STRING} ^p=([0-9]+)
    RewriteRule viewtopic\.php vbseo301.php?action=post&oldid=%1 [L]
    
    RewriteCond %{QUERY_STRING} u=([0-9]+)
    RewriteRule profile\.php vbseo301.php?action=user&oldid=%1 [L]
    
    # Comment the following line (add '#' at the beginning)
    # to disable mod_rewrite functions.
    # Please note: you still need to disable the hack in
    # the vBSEO control panel to stop url rewrites.
    RewriteEngine On
    
    RewriteCond %{HTTP_HOST} ^www\.
    RewriteRule ^$ index.php [L]
    
    
    # Some servers require the Rewritebase directive to be
    # enabled (remove '#' at the beginning to activate)
    # Please note: when enabled, you must include the path
    # to your root vB folder (i.e. RewriteBase /forums/)
    #RewriteBase /
    
    #RewriteCond %{HTTP_HOST} !^www\.yourdomain\.com
    #RewriteRule (.*) http://www.yourdomain.com/forums/$1 [L,R=301]
    
    # check to make sure it's not a www or subdomain request
    RewriteCond %{HTTP_HOST} ^([^.]+\.it) [NC]
    # if that's the case, redirect to www.HTTP_HOST
    RewriteRule (.*) http://www.%1/forum/$1 [R=301,L]
    
    #facebook like redirect
    RewriteCond %{QUERY_STRING} ^fb_xd_fragment
    RewriteRule ^(.*)$ http://www.1e2.it/forum\/$1? [R=301,L]
    
    # BEGIN W3TC Browser Cache
    <IfModule mod_expires.c>
     ExpiresActive On
     ExpiresDefault "access plus 1 seconds"
     ExpiresByType text/html   "access plus 1 seconds"
     ExpiresByType image/gif "access plus   3456000 seconds"
     ExpiresByType image/jpeg "access plus 3456000   seconds"
     ExpiresByType image/png "access plus 3456000 seconds"
     ExpiresByType text/css "access plus 3456000 seconds"
     ExpiresByType  text/javascript "access plus 3456000 seconds"
     ExpiresByType  application/x-javascript "access plus 3456000 seconds"
     ExpiresByType  application/javascript "access plus 3456000 seconds"
        ExpiresByType application/x-shockwave-flash A31536000
    </IfModule>
    AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css
    
    <FilesMatch "\\.(js|css|html|htm|php|xml)$">
    SetOutputFilter DEFLATE
    </FilesMatch>
    # END W3TC Browser Cache
    
    RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
    
    RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|vbseo_sitemap|api\.php)
    RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbseo.php [L,QSA]
    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !/(admincp|modcp|clientscript|cpstyles|images)/
    RewriteRule ^(.+)$ vbseo.php [L,QSA]

  6. #6
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    23,111
    Liked
    622 times
    Blog Entries
    4
    Hello ,

    Can you please create a support ticket with login details so we can investigate it further.
    Mert Gökçeimam / Crawlability Inc.

    vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
    Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!


    Twitter:@Depkac
    Personal Blog : Mert Gökçeimam

Similar Threads

  1. CMS Entry Comments Pagination and Duplicate Content
    By Zagis in forum URL Rewrite Settings
    Replies: 10
    Last Post: 05-08-2012, 07:40 AM
  2. CMS Entry Comments Pagination and Duplicate Content
    By Zagis in forum General Discussion
    Replies: 6
    Last Post: 01-25-2011, 03:43 AM
  3. vBulletin 4.x Link names in blog comments are not auto-converted to page titles
    By Vitaly in forum Bug Reporting
    Replies: 2
    Last Post: 10-12-2010, 09:57 AM
  4. Is this duplicate content - VB4 with CMS comments
    By randb in forum General Discussion
    Replies: 13
    Last Post: 02-23-2010, 04:22 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •