Website Analytics, Traffic Reports
This is private content for members only.
This is private content for members only.
Here is another quick way to redirect websites but this time we’ll do it using PHP. I like to use this technique when forwarding domains to a different directory.
Here are a few Haiku Error Messages that can be used during web development…
Your file was so big.
It might be very useful.
But now it is gone.
The Web site you seek
Cannot be located, but
Countless more exist.
Chaos reigns within.
Reflect, repent, and reboot.
Order shall return.
Read more
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>