Website Redirecting
A very simple way to redirect your sites with a countdown is with the following meta tag.
<meta http-equiv=”refresh” content=”9; url=http://yourwebsite.com”>
You can change the number after content to however many seconds before your visitor gets redirected. You should also change the yourwebsite.com URL to whatever your real URL is.
Remember, the meta tag should be inserted right before the </head> tag.
Example:
<html>
<head>
<title>This website has moved…</title>
<meta http-equiv=”refresh” content=”9; url=http://yourwebsite.com”>
</head>
<body>
<h1>This home page has moved. Redirecting … </h1>
If you do not see the new page, click <a href=”http://yourwebsite.com”> here.</a>
</body>
</html>
Leave a Reply
Want to join the discussion?Feel free to contribute!