Yahook
05-10-2005, 12:33 PM
I guess may be it will be useful info for you:
Redirect by PHP
<?php
header("Location: http://www.yourdomain.name/");
?>
Redirect by Javascript
<SCRIPT LANGUAGE="JavaScript">
window.location="http://www.yourdomain.com/";
</script>
Redirect by Megatags
<meta http-equiv="refresh" content="0;URL=http://www.yourdomain.com/">
Redirect by PHP
<?php
header("Location: http://www.yourdomain.name/");
?>
Redirect by Javascript
<SCRIPT LANGUAGE="JavaScript">
window.location="http://www.yourdomain.com/";
</script>
Redirect by Megatags
<meta http-equiv="refresh" content="0;URL=http://www.yourdomain.com/">