I'v been reading information about browser redirections using PHP, i have noticed
some sites saying that using a header command likeis enough, while on other community sites people say no, it is better to use the following snippet of code, which does the same job ...PHP Code:header("Location: page.html");
will you please try discussing this here, effects on browser, server, server load, page process time, load time and other aspects ?? which is in yourpoint of view, is better !!!PHP Code:header("HTTP/1.1 301 Moved Permanently");
header("Location: page.html");
header("Connection: close");
Thanks in advance...




Reply With Quote