1


看看这个:如何制作具有相同设计的网页。我用它制作了一个名为X Phoenix的网站。当我在谷歌上输入 X Phoenix 时,它并没有排在首位,尽管我已经把它放在谷歌网站管理员上并且已经 4 个月了。它没有出现在我在 Google 搜索中可以看到的任何地方。在这个 pdf中,所有页面都使用不同的关键字、标题和描述。但是在我的网站中,我使用了将头部和正文中的其他一些东西放在一个名为 header.php 的文件中的方法,并将我的内容下面的东西放在 footer.php 中,然后放在一个页面中。home.php,我把:

<?php include('header.php'); ?>
my text
<?php include('footer.php'); ?>

我的元数据在标题中,所以我如何在每个页面中更改它。
如何编写关键字,即 xphoenix、x、phoenix、f1 等。
还告诉我其他方法可以使我的网站在 google 之上并使其看起来更好。
请给我一些关于站点地图的信息以及如何制作它们。
如果我有名字:team x phoenix,我应该在关键字中写 team,x,phoenix 还是 team x phoenix。

4

3 回答 3

10

例如,您可以这样做:

在你家.php

$meta1 = 'My meta tag text';
include('header.php');
echo 'my text';
include('footer.php');

在您的 header.php 中,您可以这样做:

<meta name="description" content="<?php echo $meta1; ?>">
  • 对于 seo,您可以查看此链接:SEO
  • 对于站点地图生成器,您可以在这里查看:站点地图

但我认为最好只使用谷歌。

于 2013-02-25T09:01:13.283 回答
3

您可以通过以下方式在每个页面上定义不同的元标记:

$meta['keywords'] = "Keyoword, more words, ...";
$meta['description'] = "...";
<?php include('header.php'); ?>
my text
<?php include('footer.php'); ?>

在你的 header.php 文件中,你可以为你定义的所有不同的元标记做到这一点:

<meta name="keywords" content="<?php echo $meta['keywords']; ?>" />
<meta name="description" content="<?php echo $meta['description']; ?>" />
...
于 2013-02-25T09:00:57.000 回答
0

根据我自己的经验,我将数据库中的元描述和关键字分别存储到包含它的页面中。然后我动态地将它调用到标题中。

- page_id             int(11) auto increment
- page_title          varchar(250)  Not Null
- name                varcar(250)  Not Null
- meta_description    text
- meta_keywords       text
- is_published        tinyint(1)  Not Null
- is_deleted          tinyint(1)  Not Null
于 2013-02-25T09:04:23.207 回答