|
Hi,
I'm using a 404 URL rewrite script for my site so I get perfect URL's but everything gets farmed through a single script located in index.php.
(I am using ErrorDocument 404 /index.php in my .htaccess file)
This all works perfectly, however it throws out 404 response headers, even though the first line of code in index.php is header("HTTP/1.1 200 OK");. Obviously this is crucial to get you SE indexed.
The other strange thing is that the exact same script sends out the correct 200 header on another server (running php 5), but not on this one (running php 4).
Unfortuantely I can't upgrade the php as this ones a shared server, so is there any way people can think of that I can try to for the 200 header response to be thrown out instead of the 404.
Thanks
|