如何在 Joomla 中自定义 Last-Modified 标头?
即使在最新的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
JResponse::setHeader( 'Last-Modified', $yourDateHere );
应该可以工作。 但是,如果您想在不破解com_content
的情况下添加此内容,则需要构建一个插件来检测com_content
何时被调用,然后从数据库中检索文章获取文章的修改日期。JResponse::setHeader( 'Last-Modified', $yourDateHere );
should work. However, if you want to add this without hackingcom_content
, you'll need to build a plugin that will detect whencom_content
is being called, then retrieve the article from the database to get the modified date on the article.@全部
请随意下载并测试插件的精简版“最后修改的任何内容精简版”。 此功能允许您发送有关页面上次修改日期的正确标题信息,以便搜索机器人增加对您网站的索引。
@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.