每个页面都有不同的标题、关键字和描述
如何在我的简单 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在每个页面的顶部设置将由
header.php
读取的变量。然后将变量的值插入到header.php
中的正确位置。这是一个示例:register.php:
header.php
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 inheader.php
. Here is an example:register.php:
header.php
将输出放入函数内(在 header.php 内)并将其参数插入到标记中的适当位置。
Put the output inside a function (within your header.php) and insert its parameters at appropriate places into the markup.
你可以尝试这个:
例如
$page
变量是你的页面名称:you can try this:
for example the
$page
variable is your page name: