PHP 和关键字

发布于 2024-09-28 14:13:41 字数 96 浏览 4 评论 0原文

我想知道是否可以制作一个 php 脚本,允许我将关键字回显到元标记中。更准确地说,php 脚本回显的关键字是否会被搜索引擎索引?我不需要实际的脚本,我只需要知道这是否有利于索引。

I would like to know if I can make a php script that will allow me to echo keywords into a meta tag.To be more precise will the keywords echoed by the php script be indexed by search engines? I don't need the actual script I just need to know if this will be any good for indexing.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

如果没有 2024-10-05 14:13:41

据我所知,这对你没有任何好处。搜索引擎抓取工具将看到您的元标记,但 Google 在确定相关性时会忽略关键字。

如果您希望搜索引擎可见性,您应该专注于您的内容和演示文稿。请务必遵循关于发布 HTML 内容的 w3c 建议。

From what I know it won't do you any good. The search engine crawlers will see your meta tag, but Google, for example, ignores the keywords when determining relevance.

If you want search engine visibility you should focus on your content and presentation. Be sure to follow the w3c recommendations on publishing HTML content.

み格子的夏天 2024-10-05 14:13:41

当然可以。 Google 抓取工具/机器人也会看到它们。原因是PHP是服务器端语言,您的代码在服务器上生成并发送回浏览器供人们和搜索引擎查看。

Sure you can. They will also be seen by Google crawler/bot. The reason is that PHP is server-side language, your code is generated on server and sent back to browser for people and search engines to see.

听你说爱我 2024-10-05 14:13:41

搜索引擎抓取网页(实际上是他们的“机器人”)。您如何生成页面内容并不相关。重要的是您以 SEO(搜索引擎优化)方式生成内容。

最好查看有关如何构建该内容的 google 资源:http://www.google.com/support/webmasters/bin/answer.py?hl=zh-CN&answer=35291

search engines crawl web pages (actually their "robots" do). how you generate the content of the pages is not relevant. important is that you generate the content in a SEO (search engine optimization) way.

it is best to check out googles ressources on how to structure that content: http://www.google.com/support/webmasters/bin/answer.py?hl=en&answer=35291

水波映月 2024-10-05 14:13:41

您可以尝试这样的操作:

<meta name="keywords" lang="<?=$language;?>" content="<?=$keywords;?>"  />

变量 $keywords 应包含用 , 分隔的关键字,例如:
“新闻、php、java、perl”

You can try something like this:

<meta name="keywords" lang="<?=$language;?>" content="<?=$keywords;?>"  />

The variable $keywords should contain the keywords separated with , for example:
"news, php, java, perl"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文