View Single Post
Old 2005-03-20, 09:46 PM   #4
pudcat
Rock stars ... is there anything they don't know?
 
Join Date: Mar 2004
Posts: 13
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();
pudcat is offline   Reply With Quote