Redirect traffic to another website or webpage

Sometimes, for whatever the reason is, you may want to redirect the web traffic from one site to another.  Whether it is for a traditional domain name or the new Web 3.0 domain name, a simple HTML page with JavaScript is all you need.

Below you will find the sample code for the HTML redirection.

 

<!DOCTYPE html>
<script>location.href="https://www.cybercon.com"</script>
<html>
<head>
<title>Cybercon data center online business hosting</title>
</head>
<body>
<p>Welcome to Cybercon.com </p>
</body>
<html>