阻止 google 索引回发 Ajax 目标
Prevent google from indexing Postback Ajax destination
我有一个网站 example.com,其中有许多可以发表评论的页面。我没有使用 submit/postback 将评论 post 返回服务器,而是使用 Ajax 但它似乎创建了额外的页面。
http://example.com/page
http://example.com/page/postcomment
它索引了 post 评论页面,而不是没有 post 评论的页面。如何防止 Google 索引 post 返回函数调用?下面是我调用以提交评论的 Jquery/Ajax 函数以及 Google 然后继续索引的内容。
$.ajax({ type: "POST", url: '/page/postcomment', dataType: "json",
data: data, contentType: "application/json; charset=utf-8",
success: function () { alert('Thanks for commenting, it will be reviewed and uploaded later.'); },
error: function (response) { alert(response.statusText); } }); } } });
我不确定它是否与 SEO 有关。如果是这样,您可以在根级别创建 robots.txt。
例如,
User-agent: *
Disallow: /*/postcomment
仅供参考: Google 需要 24 到 48 小时才能再次为站点编制索引。
我有一个网站 example.com,其中有许多可以发表评论的页面。我没有使用 submit/postback 将评论 post 返回服务器,而是使用 Ajax 但它似乎创建了额外的页面。
http://example.com/page
http://example.com/page/postcomment
它索引了 post 评论页面,而不是没有 post 评论的页面。如何防止 Google 索引 post 返回函数调用?下面是我调用以提交评论的 Jquery/Ajax 函数以及 Google 然后继续索引的内容。
$.ajax({ type: "POST", url: '/page/postcomment', dataType: "json",
data: data, contentType: "application/json; charset=utf-8",
success: function () { alert('Thanks for commenting, it will be reviewed and uploaded later.'); },
error: function (response) { alert(response.statusText); } }); } } });
我不确定它是否与 SEO 有关。如果是这样,您可以在根级别创建 robots.txt。
例如,
User-agent: *
Disallow: /*/postcomment
仅供参考: Google 需要 24 到 48 小时才能再次为站点编制索引。