GetSimple Support Forum

Full Version: Error 404
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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.)

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 ?
i've just added it to the next release - hopefully there wont be too many bug-fix releases in the near future - i think we are getting close to finishing them all off. good catch on the 403 - i think it was a long night when I created that part of it...