|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2001-02-23 22:34 UTC] justin at hot dot rr dot com
Apache 1.3.12 I wrote a script that redirects a person to a different page based on the REQUEST_URI and HTTP_HOST apache variables. Ever since PHP 4.0.2, Internet Explorer started reporting 404 errors instead of going to the appropriate page. What is even more mysterious is that it is the IE 404 error page, not the server wide page nor the default 404 error page for the site. To top it all off, it works for Opera as well as Netscape. I think this must be caused by the way PHP handles headers and the way IE interprets them, because I can put PHP version 4.0.1pl2 on and it will work great even with IE, then any versions afterwards cause an error. An example page is at http://test.jwdx.com I have also added header("Status: 404 Not Found") as stated in other bug reports. I would not blame this on PHP except for the fact that different versions respond differently with all other circumstances remaining the same. --Justin Bachus PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 10:00:01 2025 UTC |
Bug resolved by adding header("HTTP/1.0 200 Success"); to the top of the script.