I have been trying to do a proper 301 redirect and have failed to do so. No matter what i try, its always a 302 redirect.

Returns a 302:

http_redirect("urlgoeshere", '', false, HTTP_REDIRECT_PERM)

Returns a 302:

header("HTTP/1.1 301 Moved Permanently");
header("Location: urlgoeshere");

Can anyone explain why these are coming back as 302's and not 301's? Server OS is linux, running PHP/5.2.14. Try it yourself.

I will give you guys a URL to try. I am testing using YSlow and Googlebot.

Should be 301: http://www.fantasysp.com/player/mlb/Albert_Pujols/1486349

Firebug shows a 302 Code

link|improve this question

79% accept rate
Works for me: $ curl http://localhost/test.php -iHTTP/1.1 301 Moved Permanently We need more information about your environment. – deceze Mar 11 '11 at 2:57
Are you on Windows, Linux, or Mac? Apparently IIS has some issues... – Mark Eirich Mar 11 '11 at 3:16
possible duplicate of php 301 redirects actually doing a 302 redirect – Alix Axel Mar 11 '11 at 3:40
Make sure you're not overlooking something simple, like editing the wrong file, uploading to the wrong server, etc... – Matthew Mar 11 '11 at 3:43
Server is running in Linux, so its not exactly a dupe of the other article, which refers to IIS. – brant Mar 11 '11 at 3:52
feedback

2 Answers

up vote 3 down vote accepted

Pretty straightforward actually:

header('Location: ' . $url, true, 301);

enter image description here


If you're using FastCGI try doing this instead:

header('Status: 301 Moved Permanently', true);
header('Location: ' . $url); // or header('Location: ' . $url, true, 301);
link|improve this answer
I tried this and it still didn't work. I added the URL to a live page that shows 302 for me. Do you see 302 as well? – brant Mar 11 '11 at 3:04
@brant: I see 301. What are you using to check the HTTP response code? – Alix Axel Mar 11 '11 at 3:06
Interesting. I am testing using YSlow in Firefox and looking at Googlebot's response in Webmaster Tools. Both show 302 for me. – brant Mar 11 '11 at 3:17
@brant: I don't know how to see that in YSlow but I've posted a screenshot of the code and HTTP response as FireBug sees it. What web server are you using? – Alix Axel Mar 11 '11 at 3:34
@brant: Are you running PHP as CGI or as an Apache module? – Alix Axel Mar 11 '11 at 3:42
show 6 more comments
feedback
header("HTTP/1.1 301 Moved Permanently");
header("Location: urlgoeshere");

Was a 301 for me.

HTTP/1.1 301 Moved Permanently
...
Location: urlgoeshere

What are you using to examine headers? Do you have any server config that will clobber the headers you send?

link|improve this answer
I don't see anything in my server config to affect a 301, though I added the URL to a live page that shows 302 for me. Do you see 302 as well? – brant Mar 11 '11 at 3:05
@brant I saw 302. – alex Mar 11 '11 at 3:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.