我已经通过Firebase托管完成了我的网站设置,一切正常。
问题是我的网站从www.example.com
重定向到example.com
我该如何预防呢?我怎样才能始终www.example.com/
?
这是我的firebase.json
:
"hosting": {
"public": "files",
"ignore": [
"firebase.json",
"**/.*"
],
"headers": [ {
"source" : "**/*.@(jpg|jpeg|gif|png)",
"headers" : [ {
"key" : "Cache-Control",
"value" : "max-age=7200"
}]
}],
"cleanUrls": true }
答案 0 :(得分:1)
您已在Firebase Hosting console中注册example.com
个域名。因此,域名指向那里。
将该域注册为www.example.com
,它将始终显示为此。请注意,您的TXT
记录仍然位于顶点(即example.com
),您可以按原样保留DNS配置,假设www
和顶点已正确指向Firebase托管。