2021年10月16日土曜日

firebaseを使ったリダイレクト

古いURLから新しいURLへリダイレクトする方法
old URL : https://happy.info/oldURL
new URL : https//happy.info/newURL


edit firebase.json
{
  "hosting": {
    "public": "public",
    "ignore": [
      "firebase.json",
      "**/.*",
      "**/node_modules/**"
    ],
    "cleanUrls": true,
    "redirects": [{
      "source": “/oldURL”,
      "destination": "https://happy.info/newURL”,
      "type": 301
    } ]
  }
}
redirectsのsourceに、“/oldURL”
destinationに"https://happy.info/newURL”、typeに301と記載してfirebaseをデプロイすればOK

0 件のコメント:

コメントを投稿