簡體   English   中英

強制將默認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';
}

您將要考慮保留路徑,查詢字符串和片段。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM