PDA

View Full Version : How to make Redirect


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/">

Hardcore-XTC
09-15-2005, 12:53 PM
the php redirect is much safer option. some browsers are set to disallow redirects through meta and javascript.

poornpig
09-23-2008, 02:12 PM
Please note this:

301 is Permanently moved (Need a full URL)
302 is Temporarily moved
303 is "see other" supported by HTTP/1.1