标签: firebase url-redirection firebase-hosting
是否可以将example.firebaseapp.com重定向到example.com?我不希望访问者访问默认的Firebase域。
example.firebaseapp.com
example.com
答案 0 :(得分:0)
您可以使用JavaScript执行客户端重定向。
if (location.host === 'example.firebaseapp.com') { location.href = 'https://example.com'; }
您将要考虑保留路径,查询字符串和片段。