OK, let's take the easy one first:
<meta last-modified="Thu, 14 Apr 2011 12:17:27 GMT" />
last-modified
is not and has never been a valid attribute of the meta
element. Not sure what is intended here.
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="Expires" content="0" />
Putting caching instructions into meta tags is not a good idea, because although browsers may read them, proxies won't. For that reason, they are invalid and you should send caching instructions as real HTTP headers.
<meta name="distribution" content="Global" />
<meta name="copyright" content="(c) 2012 OTUS" />
Neither distribution
nor copyright
are recognized values for the name
attribute of the meta
element. Valid names are described at https://w3c.github.io/html/document-metadata.html#standard-metadata-names and http://wiki.whatwg.org/wiki/MetaExtensions.
I recommend dcterms.audience
instead of distribution
and dcterms.rights
dcterms.rightsHolder
instead of copyright
.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…