删除 firebase 中 html 个文件的文件扩展名
Remove file extensions for html files in firebase
在firebase.json
中,有没有办法重写(而不是重定向)所有请求到相应的.html文件但保留其他扩展名?
例如,https://example.com/foo
将与 https://example.com/foo.html
相同。
但是https://example.com/data
不会与https://example.com/data.xml
相同。
这是 firebase.json
中的 cleanUrls
选项(如 in the docs):
{
"hosting": {
"cleanUrls": true
}
}
在firebase.json
中,有没有办法重写(而不是重定向)所有请求到相应的.html文件但保留其他扩展名?
例如,https://example.com/foo
将与 https://example.com/foo.html
相同。
但是https://example.com/data
不会与https://example.com/data.xml
相同。
这是 firebase.json
中的 cleanUrls
选项(如 in the docs):
{
"hosting": {
"cleanUrls": true
}
}