在Firebase中将网址重定向为小写

时间:2016-09-15 17:39:21

标签: firebase firebase-hosting

由于某种原因,Firebase托管中的网址区分大小写,因此当其中一个字符为大写时,重定向不起作用。这在使用自动注册文本的平板电脑的用户中很常见。

有没有办法在firebase.json文件中更改此行为,以使URL不区分大小写或自动将URL转换为小写?

1 个答案:

答案 0 :(得分:0)

这是通过在firebase.json中添加“重定向”条目来实现的

来自firebase.json

"hosting": {
"public": "public",
"ignore": [],
"redirects": [{
  "source" : "/TARGET_SITE_FOLDER",
  "destination" : "/target_site_folder",
  "type" : 301
  }]
}

为我解决了!

希望它会有所帮助:-)