如何在Firebase托管配置中将URL路径重写为参数

时间:2020-04-29 04:13:14

标签: firebase url-rewriting firebase-hosting

我要重写Firebase中URL参数的URL路径。这就是我想要做的:

https://website.web.app/forums/thread/786

它应该将该URL转换为:

https://website.web.app/forums/thread?id=786

线程的所有子路径也是如此。 我在搜索Google就像是“疯狂但未发现”。

编辑1:我找到了一个答案,但是它很安静,这是我所做的:

{    
"hosting": {
// Add the "rewrites" section within "hosting"
    "rewrites": [ {
        "source": "/forums/thread/**",
        "destination": "/thread.html"
    } ]  }

然后阅读了URl的最后数字,您知道了,但我正在寻找更好的方法。

0 个答案:

没有答案