Firebase 托管重写 URL

Firebase Hosting Rewrite URL

有什么方法可以在 firebase.json 中重写这个 URL 吗?

http:///localhost/api/随便什么/product.json

成为

http:///localhost/api/product.json

whatever 表示任何类型的路径,所以我希望如果我们插入 whatever 路径,那么浏览器将不会重定向到 404但重定向到

http:///localhost/api/product.json

谢谢

据我所知,这是一个非常规则的重写,使用了 glob 模式。根据 Firebase Hosting rewrites 上的文档,它应该是这样的:

"hosting": {
  // ...

  "rewrites": [{
    "source": "**/product.json",
    "destination": "/api/product.json"
  }]
}