There are two ways that I will discuss this topic, first by means of HTTP-EQUIV Refresh and by means of Javascript.
Redireting with HTTP-EQUIV Refresh
<META http-equiv=”refresh” content=”5; URL=http://www.balitaktakan.com”>
…the content=”5; … means that the timeout before redirecting the page will be in 5 seconds. Of course, the URL= will be the page/site or wherever you want to redirect the page.
Redirecting using Javascript
Other way to consider if it happened to be that the browser isn’t javascript enabled or might not respond to the HTTP_EQUIV tag, you can try this final approach.
<script type=”text/javascript”><!–
setTimeout(‘Redirect()’,4000);
function Redirect()
{
location.href = ‘../redirectedpage.htm’;
}
// –></script>
Other way to consider if it happened to be that the browser isn’t javascript enabled or might not respond to the HTTP_EQUIV tag, you can try this final approach.
<code>
<html>
<head>
<META NAME=”Robots” CONTENT=”NOINDEX”>
</head>
</code>