Quote:
|
Originally Posted by sbcal Just curious, can inbound links from link sites (not added by website owner) harm the website? |
Google used to say that inbound links could not cause you to be penalized, but recently their answers have been much more vague.
At this point, I strongly believe that inbound links can get your site penalized -- but that it is very difficult to do accidentally.
Quote:
|
Originally Posted by sbcal |
Google has experienced some truly horrible bugs handling www and non-www versions of domains. Google claims they are fixed, but Google has erroneously claimed that serveral times in the past.
I strongly recommend that you use Apache's mod_rewrite to 301 redirect your domain to the www version of your domain.
Code:
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www.example.com(:80)?$
RewriteRule ^/(.*) http://www.example.com/$1 [L,R=301]