搜索引擎是否能够找到从 PHP 脚本回显的元标记信息?

发布于 2024-10-20 12:17:48 字数 306 浏览 2 评论 0原文

我正在考虑做一些类似的事情:

<?php
  $title = "Title of current page";
  include("head.php");
?>

<h1>The stuff that goes inside the BODY tag</h1>

<?php
  include("foot.php");
?>

关键字和描述元标记将从 head.php 脚本中得到回显。如果我这样做,搜索引擎能够读取关键字和描述吗?如果确实如此,会对搜索引擎排名产生多大的影响?

I'm thinking of doing something along the lines of:

<?php
  $title = "Title of current page";
  include("head.php");
?>

<h1>The stuff that goes inside the BODY tag</h1>

<?php
  include("foot.php");
?>

The Keywords and Description Meta tags will be echoed from within the head.php script. If I do that will search engines be able to read the Keywords and Description? And if it does, how badly would it effect search engine rank?

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

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

发布评论

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

评论(2

两相知 2024-10-27 12:17:48

搜索引擎不了解您的服务器端包含。如果您在浏览器中打开页面并选择“查看源代码”,您将看到搜索引擎所看到的内容。这是您要考虑的,而不是您的 PHP 源代码。

Search engines have no knowledge about your server-side includes. If you open your page in a browser, and select "View Source", you will see exactly what search engines see. That is what you want to consider, not your PHP source code.

云柯 2024-10-27 12:17:48

这不就是服务器端脚本吗?最终呈现的文件是什么样的?这难道不是搜索引擎唯一能够考虑的事情吗?

isn't that all just server side scripting? What does the final presented file look like? Won't that be the only thing search engines are capable of considering?

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