Firebase中托管的网站不会加载“www”。

时间:2016-12-21 20:00:41

标签: firebase-hosting

我是网络世界的新手。我创建了网站,在Firebase Hosting中托管了它,但我发现如果使用“www”。在完整的网址之前,它会导致“无法加载该网页”。为什么会这样?

test.firebaseapp.com - 这是有效的

www.test.firebaseapp.com - 这不起作用

我可以做的配置是部署配置,它是.json文件,在我看来是这样的:

{
  "hosting": {
    "public": "Pedia",
    "rewrites": [
      {
        "source": "**",
        "destination": "/index.html"
      }
    ]
  }
}

使用“www。”在Chrome中打开网站。我明白了: enter image description here

我应该重定向吗?

2 个答案:

答案 0 :(得分:1)

要将www.test.firebaseapp.com重定向到test.firebaseapp.com,您需要添加CNAME记录。

要将test.firebaseapp.com重定向到www.test.firebaseapp.com,您需要添加A记录。

请检查域名的DNS条目。

答案 1 :(得分:1)

Firebase不再支持 www CNAME条目,建议仅将A Record @ www 。

此外,您还必须在Firebase控制台上提供重定向,请参考下面的屏幕快照enter image description here