Correct expiration header format.
authorScott Cantor <cantor.2@osu.edu>
Sat, 2 Jul 2011 22:27:59 +0000 (22:27 +0000)
committerScott Cantor <cantor.2@osu.edu>
Sat, 2 Jul 2011 22:27:59 +0000 (22:27 +0000)
apache/mod_apache.cpp

index 0b72e37..57ae0aa 100644 (file)
@@ -591,8 +591,8 @@ public:
     HTTPResponse::sendRedirect(url);
     ap_table_set(m_req->headers_out, "Location", url);
     if (m_dc->bExpireRedirects == 1) {
-        ap_table_set(m_req->err_headers_out, "Expires", "01-Jan-1997 12:00:00 GMT");
-        ap_table_set(m_req->err_headers_out, "Cache-Control", "private,no-store,no-cache");
+        ap_table_set(m_req->err_headers_out, "Expires", "Wed, 01 Jan 1997 12:00:00 GMT");
+        ap_table_set(m_req->err_headers_out, "Cache-Control", "private,no-store,no-cache,max-age=0");
     }
     return REDIRECT;
   }