我正在考虑做一些事情: ?php $title = "Title of current page"; include("head.php");?h1The stuff that goes inside the BODY tag/h1?php include("foot.php");? 关键字和描述元标记将在head.php脚本中回显.如果我这样做
<?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脚本中回显.如果我这样做,搜索引擎能够阅读关键字和描述吗?如果确实如此,它对搜索引擎排名的影响有多严重?
搜索引擎不了解您的服务器端包含.如果您在浏览器中打开页面并选择“查看源”,您将看到搜索引擎的确切内容.这是你想要考虑的,而不是你的PHP源代码.