如何在 firebase 中实现这个 .htaccess?

How to implement this .htaccess in firebase?

我有这个用于 PWA 的 .htaccess

Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.html [QSA,L]

我想将应用程序迁移到 firebase,基本上它所做的就是假设我分享了这个 link

example.com/pwa/giftLink

他被重定向到 PWA

example.com/pwa

然后 PWA 将他重定向到 giftLink。我不想通过代码来做,我更喜欢通过 firebase.json

在 Firebase 托管 rewrites 中,等效项为:

"hosting": {
  // ...

  // Add the "rewrites" attribute within "hosting"
  "rewrites": [ {
    "source": "/pwa{,/**}",
    "destination": "/pwa/index.html"
  } ]
}