Here is the domain: http://www.cbgred.com/ I just found google indexed http://cbgred.com but not with www Just wondering why this could happen and how to solve it? Need your opinion! Thanks in advance!
Do some research into .htaccess and mod_rewrite to use a 301 redirect to www. This will redirect all URL's to the domain www and redirect the PR and indexing at some point. <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} !^www\.xxx\.com [NC] RewriteRule ^(.*) http://www.xxx.com/$1 [L,R=301] </IfModule> Good luck
ServerUnion's tip will 301 redirect all to the www. / version, which is good. "It" happened because the site had links coming to it with to http://xxx.com. No biggie, it's fairly common but it's a good idea to implement the above .htaccess.
No, you need to do a 301 redirect. This can be done via .htaccess or via PHP in each page of the site. I would contact your webhosts about the issue.
ServerUnion, as u told me, I inserted that code into .htaccess file and it works! now google already indexed my www.cbgred.com ! Wow...