每个页面都有不同的标题、关键字和描述

发布于 2024-11-04 11:37:18 字数 214 浏览 7 评论 0原文

如何在我的简单 php 网站的每个页面的 中动态添加不同的标题、关键字和描述?

我已在所有页面中包含文件 header.php,我如何知道用户在哪个页面中?

例如,我有php文件register.php和login.php,我需要不同的标题、关键字和描述。

我不想使用 $_GET 方法。

谢谢!

How can I add a different title, keyword and description in every page's <head> of my simple php website dynamically?

I have included file header.php in all of my pages, how can i know in what page the user in?

For example, I have php files register.php, and login.php, and I need different titles, keywords and descriptions.

I do not want use the $_GET method.

Thanks!

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

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

发布评论

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

评论(3

唱一曲作罢 2024-11-11 11:37:18

在每个页面的顶部设置将由 header.php 读取的变量。然后将变量的值插入到 header.php 中的正确位置。这是一个示例:

register.php:

<?php
    $title = "Registration";
    $keywords = "Register, login";
    $description = "Page for user registration";

    include('header.php');
?>

header.php

<html>
    <head>
        <meta name="keywords" content="<?php echo $keywords; ?>" />
        <meta name="description" content="<?php echo $description; ?>" />
        <title><?php echo $title; ?></title>
    </head>
    <body>

Set variables at the top of each page that will be read by header.php. Then insert the values of the variables in the right places in header.php. Here is an example:

register.php:

<?php
    $title = "Registration";
    $keywords = "Register, login";
    $description = "Page for user registration";

    include('header.php');
?>

header.php

<html>
    <head>
        <meta name="keywords" content="<?php echo $keywords; ?>" />
        <meta name="description" content="<?php echo $description; ?>" />
        <title><?php echo $title; ?></title>
    </head>
    <body>
葬﹪忆之殇 2024-11-11 11:37:18

将输出放入函数内(在 header.php 内)并将其参数插入到标记中的适当位置。

function html_header($title = "Default") {
    ?><!DOCTYPE html>
    <html>
    <head>
        <meta charset="utf-8">
        <title><?php echo $title ?></title>
    </head>
    …
    <?php
}

Put the output inside a function (within your header.php) and insert its parameters at appropriate places into the markup.

function html_header($title = "Default") {
    ?><!DOCTYPE html>
    <html>
    <head>
        <meta charset="utf-8">
        <title><?php echo $title ?></title>
    </head>
    …
    <?php
}
嗫嚅 2024-11-11 11:37:18

你可以尝试这个:

例如 $page 变量是你的页面名称:

<?php
 switch($page) 
  {
    case 'home':
     $title = 'title';
     $keyword = 'some keywords..';
     $desc = 'description';
    break;
    case 'download':
     $title = 'title';
     $keyword = 'some keywords..';
     $desc = 'description';
    break;
    case 'contact':
     $title = 'title';
     $keyword = 'some keywords..';
     $desc = 'description';
    break;
  }

if(isset($title))
{
   ?>
 <title><?php echo $title; ?></title>
 <meta name="keywords" content="<?php echo $keyword; ?>" />
 <meta name="description" content="<?php echo $desc; ?>" />
 <?php
}
else
{
   ?>
 <title>default</title>
 <meta name="keywords" content="default" />
 <meta name="description" content="default" />
 <?php
}
?>

you can try this:

for example the $page variable is your page name:

<?php
 switch($page) 
  {
    case 'home':
     $title = 'title';
     $keyword = 'some keywords..';
     $desc = 'description';
    break;
    case 'download':
     $title = 'title';
     $keyword = 'some keywords..';
     $desc = 'description';
    break;
    case 'contact':
     $title = 'title';
     $keyword = 'some keywords..';
     $desc = 'description';
    break;
  }

if(isset($title))
{
   ?>
 <title><?php echo $title; ?></title>
 <meta name="keywords" content="<?php echo $keyword; ?>" />
 <meta name="description" content="<?php echo $desc; ?>" />
 <?php
}
else
{
   ?>
 <title>default</title>
 <meta name="keywords" content="default" />
 <meta name="description" content="default" />
 <?php
}
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文