Skip to content

Instantly share code, notes, and snippets.

@einenlum
Created May 7, 2023 13:48
Show Gist options
  • Select an option

  • Save einenlum/7a03b361674d1c4e73270f61744c3fa5 to your computer and use it in GitHub Desktop.

Select an option

Save einenlum/7a03b361674d1c4e73270f61744c3fa5 to your computer and use it in GitHub Desktop.
Redirect a custom domain on Vercel to another specific page from the internet
{
"redirects": [
{
"source": "/(.*)",
"has": [
{
"type": "host",
"value": "www.mydomain.io"
}
],
"permanent": false,
"destination": "https://someotherpage.com/fromtheinternet"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment