Google搜索结果显示的是ip-address而不是域名

时间:2013-08-08 12:58:55

标签: nginx dns ip-address

我在静态IP地址上设置了网站。当我在谷歌搜索它时,谷歌有ip-xx-xx-xxx-xxx.static.privatedns.com而不是我的域名。 ip-xx-xx-xxx-xxx.static.privatedns.com在网站标题下显示为绿色。

所有其他搜索引擎(bing,yahoo,duckduckgo)都列出了正确的域名。我该如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

您应该从http://ip-xx-xx-xxx-xxx.static.privatedns.com/*永久重定向到您的真实域名。使用nginx,只需添加虚拟主机:

server {
    listen 80;
    server_name ip-xx-xx-xxx-xxx.static.privatedns.com;
    rewrite ^(.*) http://my-real-domain.com$1 permanent;
}

您可能还会发现将您的网站添加到Google Webmaster Tools并对其进行监控非常有用。