https://hogehoge.com/index.htmlにアクセスすると
https://hogehoge.com/にリダイレクトするように リライトルール
を設定したいです。
Firebase.jsonを下記の内容に書き換えてみました。
それでもうまく動作せず。。
詳しい方いましたらよろしくお願いします。
// 試したこと① { "hosting": { "public": "public", "ignore": [ "firebase.json", "**/.*", "**/node_modules/**" ], "rewrites": [ { "source": "**", "destination": "/index.html" }, { "source": "/index.html", "destination": "/", "type": 301 } ] } }
// 試したこと② { "hosting": { "public": "public", "ignore": [ "firebase.json", "**/.*", "**/node_modules/**" ], "rewrites": [ { "source": "/index.html", "destination": "/", "type": 301 } ] } }
いずれもリダイレクトは作動しませんでした。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/10/18 17:08