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