最近サイトのドメインを変更しました。
その際、元のサイトから新しいサイトへリダイレクトするように設定したのでその時の備忘録を残しておきます。
設定方法
設定はとっても簡単です。
firebase.jsonファイル内のredirectsに、以下のように記述するだけです。
{
"hosting": {
"site": "hogehoge",
"public": "out",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"redirects": [
{
"source": "/:path*",
"destination": "https://hogehoge.com/:path",
"type": 301
},
{
"source": "/",
"destination": "https://hogehoge.com/",
"type": 301
}
]
}
}
以上!Firebaseでよかった!!