サイトマップを更新するときに Google に ping しようとしていますが、常に「0」という応答が返されます
これが私が試していることです:
$sitemapUrl = urlencode("http://testsite.com/Sitemap.xml");
// cUrl handler to ping the Sitemap submission URLs for Search Engines…
function myCurl($url) {
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
return $httpCode;
}
//Google
$url = "http: //www.google.com/webmasters/tools/ping?sitemap=".$sitemapUrl;
$returnCode = myCurl($url);
echo = "<p> Google Sitemaps has been pinged (return code: $returnCode). </p>";
どちらが返されますか:
Google Sitemaps has been pinged (return code: 0).