我想创建一个可以在任何路径名上工作的网站,例如domain.com/abc
,domain.com/xyz
等。
但是我只想从主页上投放。内容将动态生成。
我认为可以使用firebase.json
文件,但是我该怎么做?
我尝试过redirect
,但是由于未保留路径名,因此无法正常工作。
答案 0 :(得分:1)
默认情况下,应对此进行配置,但您可以转到这里:
"hosting": {
// ...
// Add the "rewrites" attribute within "hosting"
"rewrites": [ {
// Serves index.html for requests to files or directories that do not exist
"source": "**",
"destination": "/index.html"
} ]
}
documentation can be found here中的相应部分。
此(rewrites
)将从指定的destination
提供内容,但 不 重定向到另一个URL。