我正在使用 firebase 托管,并且我在 firebase.json 中设置了正确的 url 重写,如下所示:
"rewrites":
[{
"source": "**",
"destination": "/index.html"
}]
这似乎工作正常,因为所有路由都应该通过 index.html。但是,当我在路由中有一个以“-”开头的 firebase 对象 ID 时,它会抛出 404。因此例如my-cool-app.firebaseapp.com/profiles/-JfZA03uAJI7rpqQg0sG
会返回 404。但是,如果我删除 id 中的破折号,那么路由似乎是正确重写。
这里可能是什么问题?