you can request the http header to check if a web page has been edited by looking at its date but how about dynamic pages such as - php, aspx- which grabs its data from a database?
|
|
This is the exact purpose of the ETag header, but it has to be supported by your web framework or you need to take care that your application responds properly to requests with headers If-Match, If-Not-Match and If-Range (see HTTP Ch 3.11). |
||||
|
|
|
Even though you might think it's outdated I've always found Simon Willison's article on Conditional GET to be more than useful. The example is in PHP but it is so simple that you can adapt it to other languages. Here it is the example:
With this you can use HTTP verbs GET or HEAD (I think it's also possible with the others, but I can't see the reason to use them). All you need to do is adding either This is a very simple example of how a conditional GET works. First we need to retrieve the page the usual way: GET /some-page.html HTTP/1.1 Host: example.org First response with conditional headers and contents: 200 OK ETag: YourETagHere Now the conditional get request: GET /some-page.html HTTP/1.1 Host: example.org If-None-Match: YourETagHere And the response indicating you can use the cached version of the page, as only the headers are going to be delivered: 304 Not Modified ETag: YourETagHere With this the server notified you there was no modification to the page. I can also recommend you another article about conditional GET: HTTP conditional GET for RSS hackers. |
|||
|
|
|
You can if it uses the http response headers correctly but it's often overlooked. Otherwise storing a local md5-hash of the content might be useful to you (unless there's an easier in-content string you could hook out). It's not ideal (because it's quite a slow process) but it's an option. |
|||
|
|
|
Yes, you can and should use HTTP headers to mark pages as unexpired. If they are dynamic though (PHP, ASPX, etc.) and/or database driven, you'll need to manually control setting the Expires header/sending HTTP Not Modified appropriately. ASP.NET has some SqlDependency objects for this, but they still need to be configured and managed. (Not sure if PHP has something just like it, but there's probably something in PEAR if not...) |
|||
|
|
|
The For a regular, static page If you have control over the page, then ensuring the Last Modified header is being set will ensure a check on |
|||
|
|