Hi, This is what i have for cookie checking. setcookie("mycookie", "my value", "", "/"); header("Location: www.domain.com/checkcookie.php"); PHP: checkcookie.php if(isset($_COOKIE['mycookie'])) header("Location: index.php"); else echo "cookies does not exist"; PHP: Problem is google considering my cookiecheck redirect as 302 and it is not indexing properly. Does anybody have any ideas on a better way to do cookie checking? Thanks