我无法将源重写为其他html文件。当我强制刷新站点时,它正在工作。但是,当我进行常规刷新时,它会重写为错误的html文件(React应用程序)。
我的文件结构 /app.html-React App /directory/welcome.html-其他静态页面
"rewrites": [
{
"source": "/welcome",
"destination": "/directory/welcome.html"
},
{
"source": "**",
"destination": "/app.html"
}
]