Quote:
Originally Posted by Verbal
On another note, anyone know if the PHP header(Location: "http://www.url.com/"); redirect is a 301 or 302?
|
by itself it's 302
this code found on wmw should 301.
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.example.com/");
exit();