Redirect headers have to be in err_headers_out.
[shibboleth/cpp-sp.git] / apache / mod_apache.cpp
index 9ed5159..0b72e37 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->headers_out, "Expires", "01-Jan-1997 12:00:00 GMT");
-        ap_table_set(m_req->headers_out, "Cache-Control", "private,no-store,no-cache");
+        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");
     }
     return REDIRECT;
   }