Redirect to outher URL
- Website migration
- URL Update
- Redirect a page that no longer exists
- Multiple domains
- Fix 404 error
- Create an
index.html
file and set a meta tag whithttp-equiv="refresh"
property
<!-- In content define after how long the new url will be loaded and then the destination -->
<meta http-equiv="refresh" content="0, url=https://www.newwebsite.com" />
- Create a rollback if it doesn't work
<p>
If your browser supports meta tag redirect, you will be redirected
to our <a href="https://www.newwebsite.com">new site</a>
in 5 seconds, otherwise select the link manually.
</p>
We know it's good practice to do this from the server side, but we don't always have access to it, or most of the time, we wouldn't have the time for this implementation.