'robots.txt'がクローラーアクセスを許可していることを確認してください。
User-agent: *
Allow: /
また、サイトマップをWebmasterToolsに送信することもできます。
スナップショットが正しく提供されているようです。念のため、動作中の「index.php」の関連部分を投稿します。静的ページは「static/${TOKEN}.html」にあります
<!doctype html>
<?php
function static_url ($token) { return 'static/' . $token . '.html'; }
$escaped_fragment = $_GET['_escaped_fragment_'];
if (isset($escaped_fragment)) {
$fragment = preg_replace('/\//', '', $escaped_fragment);
$file = static_url($fragment);
if($escaped_fragment == '' || $escaped_fragment == '/'
|| (! file_exists($file))) {
$fragment = '${DEFAULT_PLACE}:${DEFAULT_STATE}'; // your default place
$file = static_url($fragment);
}
$re = '/(^<[^>]*>)|(\n|\r\n|\t|\s{2,4})*/';
$handle = fopen($file, 'r');
if ($handle != false) {
$content = preg_replace($re, '', fread($handle, filesize($file)));
fclose($handle);
}
else {
$content = 'Page not found!';
header(php_sapi_name() == 'cgi' ? 'Status: 404' : 'HTTP/1.1 404');
}
echo $content;
} else { ?>
<html> ... Your GWT host page ... </html>
<? } ?>