如何在自定义域名上修复此404错误?
在此子域https://bookmarked.fun/publicprofile/IanHunter,我的自定义域出现404错误。
在firebase的应用部署网站上,我没有遇到任何问题https://bookmarked-d5236.firebaseapp.com/publicprofile/IanHunter。
答案 0 :(得分:0)
将重写添加到firebase.json文件中修复了路由404问题。
{
"database": {
"rules": "database.rules.json"
},
"hosting": {
"public": "build",
"rewrites": [
{"source":"**", "destination": "/index.html"
}]
}
}