Updated: 16 July 2021
The HTML code for domain redirects below functions to automatically redirect visitors who open a particular domain address to another domain address.
The example below results in when a visitor opens a certain domain, in 10 seconds they will be redirected to the domain www.new-target.com.
<!DOCTYPE html> <head> <title>Page Title</title> <meta http-equiv = "refresh" content = "10; url = https://www.new-target.com" /> </head> <body> <p>Hello Digitalizer! You will be redirect to https://new-target.com in 10 seconds</p> </body> </html>