本文介绍了在身体部分传递元数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用php进行编码。有没有一种方法可以在身体部分传递meta?所以它被搜索引擎识别。我知道meta标签需要通过头部传递。但由于我动态生成页面。
>标签必须放在< head>
- 。 重构您的模板,以便您可以添加< meta>
标签动态地在头部。这应该不成问题。
I use php for coding. Is there a way to pass meta in the body part. so that it is recognized by search engines. I know meta tags needs to be passed in head. but since i am generating pages dynamically . Only body part get changed in every page.
解决方案
<meta>
tags must go in the <head>
- per the HTML specification.
Refactor your templates so you will be able to add <meta>
tags dynamically in the head. It shouldn't be a problem.
这篇关于在身体部分传递元数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!