强制将默认的 firebase 域重定向到自定义域
force redirecting default firebase domain to custom domain
是否可以将 example.firebaseapp.com
重定向到 example.com
?我不希望访问者访问默认的 firebase 域。
您可以使用 JavaScript 执行客户端重定向。
if (location.host === 'example.firebaseapp.com') {
location.href = 'https://example.com';
}
您还需要考虑保留路径、查询字符串和片段。
是否可以将 example.firebaseapp.com
重定向到 example.com
?我不希望访问者访问默认的 firebase 域。
您可以使用 JavaScript 执行客户端重定向。
if (location.host === 'example.firebaseapp.com') {
location.href = 'https://example.com';
}
您还需要考虑保留路径、查询字符串和片段。