How does one suppress a 404 status code in a WordPress page?

You can either add custom rewrites to your pages. Or on the top of the template files that wrap your other pages just output header('HTTP/1.1 200 OK');.

Leave a Comment