将网站添加到 Google 网站管理员中心时是否包含 www 前缀?

发布于 2024-09-24 22:05:01 字数 155 浏览 9 评论 0原文

我想知道当我向 Google 网站管理员中心添加网站时是否应该添加 www 前缀。该网站的两个版本(http://www.website.comhttp://website.com)完全相同,所以我想知道它是否使不同之处。

I am wondering if I should add the www prefix when I add a website to Google Webmaster Central. Both versions of the website (http://www.website.com and http://website.com) are exactly the same so I am wondering if it makes a difference.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

極樂鬼 2024-10-01 22:05:01

如前所述,没有 www 的域将被视为子域/页面。更糟糕的是,两个版本(带 www 和不带 www)将导致内容重复,从而失去 Google 的分数。

你可以做 Ruel & 的事情。上面是怎么说的,但我还建议添加一个规范元标记,告诉搜索引擎应该对哪个页面建立索引,例如,这意味着 www.domain.com、domain.com、www/domain.com/index 将被同等对待超过 4 个重复页面。

尝试坚持使用 www。因为许多您提交网站链接的地方都会要求您包含 www,因此您的 www.您页面的版本将获得所有 SEO 排名。坚持使用其中一个,否则您的网页排名将在两个版本之间分配。

As mentioned already, a domain without www will be seen as a subdomain/page. Even worse the 2 versions (with & without www) will result in duplicate content hence loosing points from Google.

You can do what Ruel & How said above but I also recommend adding a canonical meta tag which tells the search engine which page should be indexed, e.g. this means www.domain.com, domain.com, www/domain.com/index will all be treated the same rather than 4 duplicate pages.

Try to stick with www. as many places where you submit a link for your site will ask you to include www, thus your www. version of your page will get all the SEO rankings. Stick with one or your Page Rank will be split between the 2 versions.

∞琼窗梦回ˉ 2024-10-01 22:05:01

选择一个且仅一个版本,这样搜索引擎就不会混淆您的网站是否带有 www。我个人喜欢不带www,但其实没什么区别。

然后进行重定向,将此代码添加到 .htaccess

<IfModule mod_rewrite.c>
    RewriteEngine on

    RewriteCond %{HTTP_HOST} ^www\.yoursite\.com$ [NC]
    RewriteRule ^.*$ http://yoursite.com%{REQUEST_URI} [R=301,L]
</IfModule>

然后在 Google 网站管理员工具中标记它。

当一半的反向链接转到 www.yoursite.com,一半的反向链接转到 yoursite.com 时,情况不太好

Choose one and only one version so search engines wouldn't be confused if your site is with www or not. I personally like without www but it really makes no difference.

Then make a redirect adding this code to .htaccess

<IfModule mod_rewrite.c>
    RewriteEngine on

    RewriteCond %{HTTP_HOST} ^www\.yoursite\.com$ [NC]
    RewriteRule ^.*$ http://yoursite.com%{REQUEST_URI} [R=301,L]
</IfModule>

Then mark it in Google Webmaster tools.

It's not very good when half your backlinks go to www.yoursite.com and half of backlinks to yoursite.com

抹茶夏天i‖ 2024-10-01 22:05:01

这完全取决于您,有些人喜欢带有 www 的网站,因为它使网站看起来很专业,而有些人喜欢 不带 www 的网站,因为它更短。

但您只能使用一个。根据您的选择设置重定向。如果您选择 www,请设置将 http://example.com 重定向到 http://www.example.com 的重定向,并反之亦然。

It's really up to you, some likes websites with www because it makes the site look professional, and some likes without www because its shorter.

You can only use one though. Set a redirect on your choice. If you chose with www, set a redirect that redirects http://example.com to http://www.example.com and vice versa.

巴黎夜雨 2024-10-01 22:05:01

“www”实际上是一个子域。如果您添加 example.com,则涵盖了所有子域,例如 blog.example.com。如果验证www.example.com,后面需要添加blog.example.com,不确定WT,一般都是这样。

"www" is actually a subdomain. I you add example.com, you covered all subdomains, eg blog.example.com. If you verify www.example.com, you need to add blog.example.com later, not sure about WT, this is generally this way.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文