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?
Even in the latest Joomla 1.5 Last-Modified Header is non-customizable and returns current date,
Share
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_contentis being called, then retrieve the article from the database to get the modified date on the article.