我要重写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的最后数字,您知道了,但我正在寻找更好的方法。