I'v been reading information about browser redirections using PHP, i have noticed
some sites saying that using a header command like
PHP Code:
header("Location: page.html"); 
is 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("HTTP/1.1 301 Moved Permanently");
header("Location: page.html");
header("Connection: close"); 
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 !!!

Thanks in advance...