Created
May 7, 2023 13:48
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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