我的Firebase托管在通配符重定向方面遇到一些困难:
我目前有这样的网址设置:
/post/123123
其中123123
是帖子的ID。
我希望它重定向到/post?q=123123
。
我已经尝试过了:
"hosting": {
"redirects": [ {
"source": "/post/:postId",
"destination": "/post?q=:postId",
"type": 301
}]
"cleanUrls": true,
},
但是,这没有任何作用。
我在做错什么吗?
非常感谢。