如何在 Joomla 中自定义 Last-Modified 标头?

发布于 2024-07-17 02:17:26 字数 135 浏览 7 评论 0原文

即使在最新的 Joomla 1.5 中,Last-Modified 标头也是不可自定义的,并且返回当前日期,恕我直言,这不符合 seo 基础知识。 有谁知道如何(或组件)使 Joomla 1.5 根据上次修改的文章返回 Last-Modified 标头?

Even in the latest Joomla 1.5 Last-Modified Header is non-customizable and returns current date, which is imho against seo-basics. Does any one know how (or component) to make Joomla 1.5 return Last-Modified header based on last modified article?

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

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

发布评论

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

评论(2

柒夜笙歌凉 2024-07-24 02:17:26

JResponse::setHeader( 'Last-Modified', $yourDateHere ); 应该可以工作。 但是,如果您想在不破解 com_content 的情况下添加此内容,则需要构建一个插件来检测 com_content 何时被调用,然后从数据库中检索文章获取文章的修改日期。

JResponse::setHeader( 'Last-Modified', $yourDateHere ); should work. However, if you want to add this without hacking com_content, you'll need to build a plugin that will detect when com_content is being called, then retrieve the article from the database to get the modified date on the article.

久夏青 2024-07-24 02:17:26

@全部
请随意下载并测试插件的精简版“最后修改的任何内容精简版”。 此功能允许您发送有关页面上次修改日期的正确标题信息,以便搜索机器人增加对您网站的索引。

@All
Feel free to download and test lite version of plugin "Last-Modified Any Content Lite". This one allows you to send right header information about last-modified date of page for search bots to increase indexing your websites.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文