删除查询参数和?来自 URL 在 firebase 重定向
Remove Query params and ? from URL in firebase redirect
有人知道如何删除 之后的所有内容吗?在 url 内的 firebase?
我只尝试了重定向,然后在此基础上重写。
"redirects": [
{ "type": 302, "source": "/testMenuBrowse.php?cat=36", "destination": "/" }
],
"rewrites": [
{ "type": 302, "source": "/testMenuBrowse{,/**}", "destination": "/" }
],
不管我做什么,结果URL都是http://www.example.com/?cat=36
目前无法在使用 Firebase 托管进行重定向时删除查询参数。您可能希望 file a feature request 获得该功能。
有人知道如何删除 之后的所有内容吗?在 url 内的 firebase?
我只尝试了重定向,然后在此基础上重写。
"redirects": [
{ "type": 302, "source": "/testMenuBrowse.php?cat=36", "destination": "/" }
],
"rewrites": [
{ "type": 302, "source": "/testMenuBrowse{,/**}", "destination": "/" }
],
不管我做什么,结果URL都是http://www.example.com/?cat=36
目前无法在使用 Firebase 托管进行重定向时删除查询参数。您可能希望 file a feature request 获得该功能。