Results 1 to 8 of 8

Indexing proplem

This is a discussion on Indexing proplem within the Troubleshooting forums, part of the vBSEO SEO Plugin category; Google wont index my site. I don't know how long it takes or if I have something wrong. It crawls ...

  1. #1
    Member
    Real Name
    travis
    Join Date
    Sep 2007
    Posts
    32
    Liked
    0 times

    Indexing proplem

    Google wont index my site. I don't know how long it takes or if I have something wrong. It crawls my site every day but nothing seems to be happening. I also have sitemap generator installed.
    How do I know if yahoo is indexing my site?

    site:www.dentallabnetwork.com - Google Search
    link:www.dentallabnetwork.com - Google Search

  2. #2
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    22,367
    Liked
    542 times
    Blog Entries
    4
    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
    travis
    Join Date
    Sep 2007
    Posts
    32
    Liked
    0 times
    What the heck, so it is working? In my webmaster tools it shows nothing is indexed. Why would they show the site as site:www.dentallabnetwork.com - Google Search

  4. #4
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    22,367
    Liked
    542 times
    Blog Entries
    4
    You are using to different domain format for your site. You shall 301 redirect domain.com www.domain.com via .htaccess. You can get more information from 301 Redirecting Domains
    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

  5. #5
    Member
    Real Name
    travis
    Join Date
    Sep 2007
    Posts
    32
    Liked
    0 times
    I set the preferred domain as dentallabnetwork, should I change it back to Dental Lab Network

  6. #6
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    22,367
    Liked
    542 times
    Blog Entries
    4
    In that case you shall redirect www.domain.com to domain.com . Please check that thread for detailed information.
    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

  7. #7
    Member
    Real Name
    travis
    Join Date
    Sep 2007
    Posts
    32
    Liked
    0 times
    Quote Originally Posted by Mert Gökçeimam View Post
    You are using to different domain format for your site. You shall 301 redirect domain.com www.domain.com via .htaccess. You can get more information from 301 Redirecting Domains
    Will this effect my indexing?

  8. #8
    Member
    Real Name
    travis
    Join Date
    Sep 2007
    Posts
    32
    Liked
    0 times
    So I will change the following.

    # 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

    # 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\.dentallabnetwork\.com
    RewriteRule (.*) http://www.dentallabnetwork.com/forums/$1 [L,R=301]

    RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]

    RewriteCond %{QUERY_STRING} !vbseourl=
    RewriteCond %{REQUEST_URI} !(admincp/|modcp/|chat|cron)
    RewriteRule ^(.*\.php)$ vbseo.php?vbseourl=$1 [L,QSA]

    RewriteCond %{REQUEST_FILENAME} !\.(jpg|gif)$
    RewriteRule ^(archive/.*)$ vbseo.php?vbseourl=$1 [L,QSA]

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !^(admincp|modcp|clientscript|cpstyles|images)/
    RewriteRule ^(.+)$ vbseo.php?vbseourl=$1 [L,QSA]


    To this:

    # 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

    # 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\.dentallabnetwork\.com
    RewriteRule (.*) http://dentallabnetwork.com/forums/$1 [L,R=301]

    RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]

    RewriteCond %{QUERY_STRING} !vbseourl=
    RewriteCond %{REQUEST_URI} !(admincp/|modcp/|chat|cron)
    RewriteRule ^(.*\.php)$ vbseo.php?vbseourl=$1 [L,QSA]

    RewriteCond %{REQUEST_FILENAME} !\.(jpg|gif)$
    RewriteRule ^(archive/.*)$ vbseo.php?vbseourl=$1 [L,QSA]

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !^(admincp|modcp|clientscript|cpstyles|images)/
    RewriteRule ^(.+)$ vbseo.php?vbseourl=$1 [L,QSA]

Similar Threads

  1. Google indexing single posts :(
    By Pirate in forum Troubleshooting
    Replies: 5
    Last Post: 03-22-2007, 07:19 AM
  2. Possible to stop spiders from indexing forum 'category' links only?
    By libertylounge in forum General Discussion
    Replies: 0
    Last Post: 11-07-2006, 04:40 PM
  3. Google Bots visiting like mad, not indexing
    By lindmar in forum General Discussion
    Replies: 6
    Last Post: 10-11-2006, 08:44 PM
  4. Google not indexing the right sites
    By NightNinja in forum General Discussion
    Replies: 18
    Last Post: 04-20-2006, 05:39 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
  •