Our error pages return code 200 by default. There is a possible workaround though. This is what you need to do:
1) Create* an .htaccess file in the folder of your domain/subdomain with the following line in it:
Code:
ErrorDocument 404 http://your-domain.com/error404.php
Replace your-domain.com with your actual domain or subdomain!*or add the above line to your .htaccess file if you already have one.
2) Create a php file called error404.php in the same folder with the following code in it:
Code:
<?php
header("HTTP/1.0 404 Not Found");
?>
Now your 404 error page is the error404.php file, it returns code 404. To help you check to see what code your error page returns, you can use this tool:
http://gsitecrawler.com/tools/Server-Status.aspx.
_________________
Cheers,
Steve
Support Team Supervisor
Before asking a question,
please read the F.A.Q.