add cache-control meta tags

This commit is contained in:
Surya Kant Bansal 2017-10-31 23:38:49 +05:30
parent ffb2be195b
commit 7f88b8f119
1 changed files with 7 additions and 2 deletions

View File

@ -160,6 +160,11 @@ Valid `<head>` elements include `meta`, `link`, `title`, `style`, `script`, `nos
<meta name="geo.position" content="latitude;longitude">
<meta name="geo.region" content="country[-state]"><!-- Country code (ISO 3166-1): mandatory, state code (ISO 3166-2): optional; eg. content="US" / content="US-NY" -->
<meta name="geo.placename" content="city/town"><!-- eg. content="New York City" -->
<!-- Browser Cache-Control meta tags -->
<meta http-equiv="Cache-Control" content="description" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
```
- 📖 [Meta tags that Google understands](https://support.google.com/webmasters/answer/79812?hl=en)