在语义上创建的任何 HTTP header 字段?

Any HTTP header field for created at semantic?

Last-Modified HTTP header 字段更新于 ,有没有为 创建的特殊字段 ?

谢谢。

header Last-Modifiedthis meaning:

The Last-Modified entity-header field indicates the date and time at which the origin server believes the variant was last modified.

在名为'Conditional GET'的进程中使用。

客户

客户端过去已经访问过该资源。如果它现在再次请求资源,它会设置 If-Modified-Since header:

GET /path/to/resource
If-Modified-Since: Sat, 29 Oct 1994 19:43:31 GMT

服务器

如果服务器上的资源自该日期以来未被修改,服务器将不响应 body:

304 Not Modifed

总结

Last-Modified有一个特殊的含义,用于启用缓存。没有 header 表示资源的创建日期。