The following HTML Redirect snippet, will redirect your visitors to another web page instantly. The content=”0; may be changed to the number of seconds you want the browser to wait before redirecting.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Page Title</title>
<meta http-equiv="Refresh" content="0; url=http://www.the-domain-you-want-to-redirect-to.com">
</head>
<body>
Optional page content here.
</body>
</html>
 

Leave a Comment