diff options
author | julieng <julien.gattelier@gmail.com> | 2021-09-17 20:49:55 +0200 |
---|---|---|
committer | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-10-12 07:57:56 +0200 |
commit | df12ec2617159d79d2ea959389358ef52423f9ff (patch) | |
tree | faa945937b4c014911119535ac35d7df48cb83a6 /files/fr/web/http/headers/expires/index.md | |
parent | 258ba7b4be62d8640477a3bd3146d08b00cb70ec (diff) | |
download | translated-content-df12ec2617159d79d2ea959389358ef52423f9ff.tar.gz translated-content-df12ec2617159d79d2ea959389358ef52423f9ff.tar.bz2 translated-content-df12ec2617159d79d2ea959389358ef52423f9ff.zip |
move *.html to *.md
Diffstat (limited to 'files/fr/web/http/headers/expires/index.md')
-rw-r--r-- | files/fr/web/http/headers/expires/index.md | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/files/fr/web/http/headers/expires/index.md b/files/fr/web/http/headers/expires/index.md new file mode 100644 index 0000000000..99e9e44e7a --- /dev/null +++ b/files/fr/web/http/headers/expires/index.md @@ -0,0 +1,73 @@ +--- +title: Expires +slug: Web/HTTP/Headers/Expires +translation_of: Web/HTTP/Headers/Expires +--- +<div>{{HTTPSidebar}}</div> + +<p>Le header <code><strong>Expires</strong></code> contient la date/heure après laquelle la réponse est considérée comme dépréciée.</p> + +<p>Les dates invalides, telles que la valeur 0, représentent une date dans le passé et signifient que la ressource est expirée.</p> + +<p>Si un header {{HTTPHeader("Cache-Control")}} contient une directive "max-age" ou "s-max-age" dans la réponse, le header <code>Expires</code> sera ignoré.</p> + +<table class="properties"> + <tbody> + <tr> + <th scope="row">Header type</th> + <td>{{Glossary("Response header")}}</td> + </tr> + <tr> + <th scope="row">{{Glossary("Forbidden header name")}}</th> + <td>no</td> + </tr> + <tr> + <th scope="row">{{Glossary("Simple response header", "CORS-safelisted response-header")}}</th> + <td>yes</td> + </tr> + </tbody> +</table> + +<h2 id="Syntaxe">Syntaxe</h2> + +<pre class="syntaxbox">Expires: <http-date> +</pre> + +<h2 id="Directives">Directives</h2> + +<dl> + <dt><http-date></dt> + <dd> + <p>An HTTP-date timestamp.</p> + </dd> +</dl> + +<h2 id="Exemples">Exemples</h2> + +<pre>Expires: Wed, 21 Oct 2015 07:28:00 GMT</pre> + +<h2 id="Spécifications">Spécifications</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Specification</th> + <th scope="col">Title</th> + </tr> + <tr> + <td>{{RFC("7234", "Expires", "5.3")}}</td> + <td>Hypertext Transfer Protocol (HTTP/1.1): Caching</td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> + +<p>{{Compat("http.headers.Expires")}}</p> + +<h2 id="See_also">See also</h2> + +<ul> + <li>{{HTTPHeader("Cache-Control")}}</li> + <li>{{HTTPHeader("Age")}}</li> +</ul> |