From 68e8bd21ce426cd4467c7c87cc68e9cdb63e6dea Mon Sep 17 00:00:00 2001
From: Ken Coar
+ You can also specify the expiration time calculation using an + alternate syntax, + described later in this document. +
+ The + ExpiresDefault + and + ExpiresByType + directives can also be defined in a more readable syntax of the form: +
+ExpiresDefault "<base> [plus] {<num> <type>}*"
+
+ ExpiresByType type/encoding "<base> [plus] {<num> <type>}*"
+ + where <base> is one of: +
+ + ++ The 'plus' keyword is optional. <num> should be an + integer value [acceptable to atoi()], and <type> + is one of: +
+ ++ For example, any of the following directives can be used to make + documents expire 1 month after being accessed, by default: +
+ExpiresDefault "access plus 1 month"
+
+ ExpiresDefault "access plus 4 weeks"
+
+ ExpiresDefault "access plus 30 days"
+
+ The expiry time can be fine-tuned by adding several '<num> <type>' + clauses:
+ExpiresByType text/html "access plus 1 month 15 days 2 hours"
+
+ ExpiresByType image/gif "modification plus 5 hours 3 minutes"
+