-1

我看到一些帖子表明数据库链接的关键字和描述不适用于 SEO 目的。

我还阅读了一些帖子,这些帖子说输出 php 具有与 html 相同的 SEO 潜力。

我有 PHP 回显元关键字和从相对链接文件夹中的可编辑文本文件中获取的元描述。

代码:

<?php
$myFile = "textSourceFiles/metaDescription.txt";
$fh = fopen($myFile, 'r');
$theData = fread($fh, filesize($myFile));
fclose($fh);
echo "<meta name='description' content='$theData' />";
?>

简短的问题:这毫无意义吗?(顺便说一句,关键字和描述输出是完美的)

非常感谢

/布莱恩

4

3 回答 3

4

我不知道你在读什么样的帖子,但那是完全错误的。关键字和/或描述如何添加到呈现的输出中并不重要。

PHP 的输出几乎总是 HTML(当然也有例外)。任何爬虫(谷歌或其他)只会看到呈现的 HTML,它真的不知道它是如何生成的。

编辑
@Fluffeh 提出了一个重要的观点,即使用了 Javascript,那么在实际运行 Javascript 之后,爬虫很可能不会获取更新的 DOM 元素。

于 2012-08-08T08:29:53.947 回答
1

There is nothing wrong with doing this t all. It appears as if it was in the HTML doc. What you don't want to do is use JavaScript to pop them out as the page has already loaded. As long as it is done on the server end and not after the page has been parsed, search engines won't have any clue or care about how it was done.

On that note, why read the file and then echo it out? Why not just include it in the right place?

于 2012-08-08T08:29:16.180 回答
0

我看到一些帖子表明数据库链接的关键字和描述不适用于 SEO 目的。

任何这样说的人都应该被忽略,因为很明显他们不知道他们在说什么。

唯一重要的是输出。

于 2012-08-08T08:30:53.310 回答