PHP 定期检索 JS 生成的内容以用于 SEO 目的?
我想我在 Chris Heilmann 的 YQL 教程中读到,如果您使用 JSON 生成任何客户端内容,则应该包含一个服务器端函数来定期生成内容以供搜索引擎查找。 (我希望我能找到参考资料。)这是真的吗?如果是,那么用 PHP 方法每周为搜索机器人运行一次此 JSON 函数是什么?
$.getJSON('http://query.yahooapis.com/v1/public/yql?q=this%20*%20is%20query&format=json&callback=',
function (data) {
$.each(data.query.results.row, function (i, item) {
$("table#results")
.append('<tr><td class="color">' + item.color + '</td><td class="size">' + item.size + '</td><td class="brand">' + item.brand + '</td></tr>');
});
I thought I read in a tutorial on YQL by Chris Heilmann that if you're generating any content client-side with JSON, you should include a server-side function to generate the content at regular intervals for search engines to find. (I wish I could find the reference back.) Is that true, and if so, what is a PHP way to run this JSON function once a week for search bots?
$.getJSON('http://query.yahooapis.com/v1/public/yql?q=this%20*%20is%20query&format=json&callback=',
function (data) {
$.each(data.query.results.row, function (i, item) {
$("table#results")
.append('<tr><td class="color">' + item.color + '</td><td class="size">' + item.size + '</td><td class="brand">' + item.brand + '</td></tr>');
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了参考(最后一行)
评论者提供这个 PHP,HTML 在注释中被删除:
但它是非此即彼,对吧? PHP 还是 JS/JSON?
I found the reference (last line)
A commenter provides this PHP, the HTML got stripped in the comment:
But it's either/or, right? Either PHP or JS/JSON?