没有“www”在 Google 列表中我们的 URL 前面?

发布于 2024-11-06 06:40:53 字数 155 浏览 0 评论 0原文

基本上我们的网站已在 Google 中列出,但 URL 中只有“ourdomain.com”,而我们希望它正确包含“www.ourdomain.com”。

有没有办法通知谷歌蜘蛛这一点?元标签?我们的 httpd 中的设置?还是我们需要联系我们的托管提供商了解 DNS 主机设置?

Basically our website is listed in Google but the URL only has "ourdomain.com" whereas we'd like it to properly have "www.ourdomain.com".

Is there a way to inform the Google spiders of this? A meta tag? A setting in our httpd? Or is it a DNS host setting we'll need to contact our hosting provider about?

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

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

发布评论

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

评论(4

Smile简单爱 2024-11-13 06:40:53

这实际上可以通过谷歌的网站管理员工具来控制。您必须首先完成站点验证过程,但设置完成后,您可以应用您的首选项来确定域在搜索结果列表中的显示方式。

This can actually be controlled from Google's webmaster tools. You'll have to go through the site verification process first, but once it's set up, you can apply your preference for how the domain displays in search result listings.

听风念你 2024-11-13 06:40:53

您应该设置指向您的 www.301 永久重定向。地址。这可以通过将以下内容添加到 .htaccess 文件中来完成。

## Redirect to www.
RewriteCond %{HTTP_HOST} !^www.domain.com$ [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]

这样,当 Google 下次索引您的网站时,他们的机器人应该会选择此重定向并更新其列表。

You should setup a 301 Permanent Redirect that points to your www. address. This can be done by adding the following to your .htaccess file.

## Redirect to www.
RewriteCond %{HTTP_HOST} !^www.domain.com$ [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]

That way when Google next indexes your site, their bots should pick up this redirect and update their listings.

鹿! 2024-11-13 06:40:53

您可以使用 Google 网站站长工具来完成此操作:http://www.google.com/webmasters/tools /。确认您的网站并且某个地方有一个选项。

You can do it with Webmaster-Tools by google: http://www.google.com/webmasters/tools/. Confirm you're website and somewhere there is an option to it.

想挽留 2024-11-13 06:40:53

使用 Google 网站站长工具告诉 Google 您的偏好(您需要创建一个 Google 帐户(如果您没有)并验证您的域)

使用 部分中的规范链接标记,以便其他搜索引擎也了解您的偏好:

<link rel="canonical" href="http://www.example.com/" />

添加重定向

RewriteEngine On
RewriteCond %{HTTP_HOST} ^example.com
RewriteRule (.*) http://www.example.com/$1 [R=301,L]

Using Google Webmaster Tools to tell Google your preference (you will need to create a Google Account if you don't have it and validate your domain)

Using Canonical Link Tag in your <head> section, so other search engines also know your preferences:

<link rel="canonical" href="http://www.example.com/" />

Adding Redirect in your .htaccess file:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^example.com
RewriteRule (.*) http://www.example.com/$1 [R=301,L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文