Guys,
I want to stop wordpress from putting out a 404 header code
One thing that work is by hacking the core wordpress code.
I am thinking of a better way. Basically, I put
<php>
header("HTTP/1.1 200 OK");
</php>
in 404.php template.
However, that doesn't work. I really don't want to hack the wordpress core code.
is there a better way?
Oh ya, wordpress is open source code and as far as I know, modifying the core code for own use does not break any TOS in case somebody want to mention that.