gpt4 book ai didi

firebase - 如何从单页应用程序重写中排除路径(/images)?

转载 作者:行者123 更新时间:2023-12-02 09:13:53 24 4
gpt4 key购买 nike

我有一个 React 应用程序,并且在 Firebase 托管中具有常见的重写规则:

   "rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]

我还有一个单独的/images 目录,其中包含我不想重写的图像。

如何从重写中排除/images 目录?

最佳答案

我有点晚了,但我在搜索类似问题时发现了这个问题。

使用此重写规则:

"rewrites": [
{
"source": "!/images/**",
"destination": "/index.html"
}
]

关键是“源”(如 firebase.json 中的许多字段)使用 glob pattern matching notation 。此规则不是重定向 index.html 上的所有内容(如“** ”),而是重定向图像文件夹和子文件夹中的所有内容。

关于firebase - 如何从单页应用程序重写中排除路径(/images)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48128767/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com