How to find the age of a page?
July 29, 2008 2:02 PM
Subscribe
For
certain reasons, I need to get the time of birth of a certain web page on another company's site, down to the minute.
I've checked the source code for notes, archive.org, and a couple of SEO tools I use but I'm drawing a blank on how to find out the precise age of this page to the date and time, EST, without access to their server logs. The page cache is not even indexed in Google at this time.
Is there a good tool or technique out there for finding the exact age of a web page?
And, no, unfortunately I cannot simply call them and ask them.
The url is formed like this:
http://example.com/?id=foo
posted by anonymous to computers & internet (10 comments total)
2 users marked this as a favorite
For example, a local static website:
Content-Length: 14145
Content-Type: text/html
Content-Location: {redacted}
Last-Modified: Fri, 18 Jul 2008 20:39:47 GMT
Accept-Ranges: bytes
Etag: "90a4406b16e9c81:a25"
Server: Microsoft-IIS/6.0
ServerName: IIS005
X-Powered-By: ASP.NET
Date: Tue, 29 Jul 2008 21:10:32 GMT
200 OK
If it's a dynamic site, which can even include something that doesn't change but just use a content management system, the "birth" of the page is the second you request the page, as it's generated on the fly, and, short of somehow getting access to their server, you're out of luck.
posted by fogster at 2:14 PM on July 29