Forum Moderators: open
I found that in Google queries link:www.site.com and link:site.com return different results. I always saw that the query with 'www' returns much more results.
Does it mean that it is better to promote address with 'www'?
Does it mean that it is better to promote address with 'www'?
No, I just means it's used more.
I prefer the non www. but that's just a personal preferance because I use sub domain alot. There is no real advantage of promoting either of them. However, I'd promote the www. purely because new internet users expect it and some software/web apps expect it.
Chris.
have stated, there is no real difference. It justs depends on what you are planning to do with the URI, if its just one site, then no problems, but if your talking on a larger scale, then using the non-www, and substituting it with subdomains to section of a site, due to them being completely seperate areas of the site or of the business, depending on the context of course.
If your thinking along the lines of using sub-domains then these are independently viewed by most of the search engines, whatever you do i would not suggest multiple subdomins with similar content, big no no.
Taking it one step further if your thinking about langauge variations then i would suggest using different urls.
Did I understand correctly:
If I need to promote site domain.com,
it is useful for Google to setup redirect from [domain.com...] to [domain.com...] using the redirect code in .htaccess file provided in that older thread?
If I need to promote site domain.com, it is useful for Google to setup redirect from [domain.com...] to [domain.com...] using the redirect code in .htaccess file provided in that older thread?
Yes. Use a 301-Moved Permanently redirect.
Jim
And here's an equivalent way to do it:
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_HOST}!^www\.mydomain\.com$
RewriteRule ^(.*)$ [mydomain.com...] [R=permanent,L]
Jim