子域上的Firebase自定义域404错误

时间:2017-06-13 21:45:09

标签: reactjs firebase firebase-hosting

如何在自定义域名上修复此404错误?

在此子域https://bookmarked.fun/publicprofile/IanHunter,我的自定义域出现404错误。
在firebase的应用部署网站上,我没有遇到任何问题https://bookmarked-d5236.firebaseapp.com/publicprofile/IanHunter

1 个答案:

答案 0 :(得分:0)

将重写添加到firebase.json文件中修复了路由404问题。

{
  "database": {
    "rules": "database.rules.json"
  },
  "hosting": {
    "public": "build",
    "rewrites": [ 
      {"source":"**", "destination": "/index.html"
  }]
  }
}