Quote:
Originally Posted by BSMedia
This doesn't seem to send the correct error codes in the header as the content is currently 404 so it's not google/search engine friendly.
You need to add the 404 php header code to it, for it to be "Google" friendly.
|
Find on 404.php;
Code:
error_reporting(E_ALL & ~E_NOTICE);
Add above;
Code:
header("HTTP/1.0 404 Not Found");
header("Status: 404 Not Found");
Thanks for Add-ons