Firebase 托管特定路径的尾部斜线
Firebase hosting trailing slash for specific path
我想重定向 https://b6.games/solitaire to https://b6.games/solitaire/。
我该怎么做?
我可以为特定路径设置尾部斜线吗?
注意:我使用的是 cleanUrls:true
而 https://b6.games/solitaire/
实际上是 https://b6.games/solitaire/index.html
。
没有 https://b6.games/solitaire.html
文件,但 firebase 以某种方式路由到它。
如果您使用的是 Firebase 托管,则需要更改 firebase.json
以包含此部分:
"hosting": {
// ...
// Add the "trailingSlash" attribute within "hosting"
// When true, Hosting redirects URLs to add a trailing slash.
"trailingSlash": true
}
文档在这里:
https://firebase.google.com/docs/hosting/full-config#control_trailing_slashes
我想重定向 https://b6.games/solitaire to https://b6.games/solitaire/。
我该怎么做? 我可以为特定路径设置尾部斜线吗?
注意:我使用的是 cleanUrls:true
而 https://b6.games/solitaire/
实际上是 https://b6.games/solitaire/index.html
。
没有 https://b6.games/solitaire.html
文件,但 firebase 以某种方式路由到它。
如果您使用的是 Firebase 托管,则需要更改 firebase.json
以包含此部分:
"hosting": {
// ...
// Add the "trailingSlash" attribute within "hosting"
// When true, Hosting redirects URLs to add a trailing slash.
"trailingSlash": true
}
文档在这里:
https://firebase.google.com/docs/hosting/full-config#control_trailing_slashes