Hey all.
Just wondering if anyone can help me understand something...
I've had the google bot come to my site twice now an both times it only accessed 1 page. Is this normal or is it because of the way I designed my index page?
This is what my index page looks like
<?php
if (strpos(strtoupper($HTTP_ACCEPT), 'WML')){
header("302 Moved Temporarily"); // Force the browser to load the WML file instead
header("Location: ".'http://www.mysite.com/wml/index.php');
}else{
header("302 Moved Temporarily"); // Force the browser to load the HTML file instead
header("Location: ".'home.php');
}
?>
<a href="home.php">Enter CardGuard</a>
Thanks.