/* GoDaddy 404 Redirects FIX */
$currURL = $_SERVER['REQUEST_URI'];
$CheckRedirectError = substr($currURL, -6);
if (preg_match("/^[a-zA-Z]{5}\/$/",$CheckRedirectError)){
$protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER_PORT'] == 443) ? "https://" : "http://";
$redirectTo = str_replace($CheckRedirectError, '', $currURL);
header("HTTP/1.1 301 Moved Permanently");
header("Location: " . $protocol . $_SERVER['HTTP_HOST'] . $redirectTo);
exit();
The page you requested could not be found. Try refining your search, or use the navigation above to locate the post.