I have modified the file "index.php" in the aim to have a 404 header when you arrive on the "Oops page"... (needed if you want use Google Webmaster Tools.)
Brian
PS: Why use 403 instead of 404 ?
Code:
if ($private == 'Y') {
header('Location: 403');
exit;
}
if ($url == '403') {
header('HTTP/1.0 404 Not Found');
}
Brian
PS: Why use 403 instead of 404 ?