Firebase 重定向/重写到静态页面

时间:2021-01-12 18:25:43

标签: html firebase redirect firebase-hosting

我累了this但没有得到答案。

我在 firebase 上托管了一个网络应用

我在 https://example.com/payment.html?data=my_data 有一个页面

我想缩短一些时间,因此需要将 https://example.com/pay/my_data 之类的任何页面重定向到 https://example.com/payment.html?data=my_data

尝试过

"redirects": [
      {
        "source": "/pay/:vars*",
        "destination": "/payment.html?data=:vars*",
        "type": 301
      }
    ],

但它不起作用。

0 个答案:

没有答案