我有一个聚合物入门套件应用程序,并添加了一个名为extra.html的额外静态html文件。
我遵循了建议的重写规则in polymer docs,并且期待如果我导航到this url,它将显示extra.html。但是,它总是取代index.html。
我的firebase.json如下:
{
"database": {
"rules": "database.rules.json"
},
"hosting": {
"public": "build/unbundled",
"rewrites": [
{
"source": "!/__/**",
"destination": "/index.html"
},
{
"source": "**/!(*.js|*.html|*.css|*.json|*.svg|*.png|*.jpg|*.jpeg)",
"destination": "/index.html"
}
]
}
}
当我导航到https://firebaseUrl/extra.html时,如何让它显示extra.html?感谢。