Fare un reindirizzamento in Apache è facile (mod_alias):
RedirectMatch ^.*$ http://portal.example.com/
L'impostazione delle intestazioni della cache è altrettanto semplice:
Header set Cache-Control max-age=0
Header set Expires "Thu, 01 Dec 1994 16:00:00 GMT"
(Non voglio questo nella cache)
Ma! Sembra che non puoi unire i due. Questa configurazione comporta l'invio del reindirizzamento, ma non le intestazioni:
<VirtualHost *:80>
ServerName __default__
Header set Cache-Control max-age=0
Header set Expires "Thu, 01 Dec 1994 16:00:00 GMT"
RedirectMatch ^.*$ http://portal.example.com/
</VirtualHost>
Esempio di ciò che accade realmente:
jb@apto % telnet 192.168.0.1 80
Trying 192.168.0.1...
Connected to redirector.example.com.
Escape character is '^]'.
GET / HTTP/1.1
Host: foo
HTTP/1.1 302 Found
Date: Sat, 21 Aug 2010 09:36:38 GMT
Server: Apache/2.2.9 (Debian) Phusion_Passenger/2.2.9
Location: http://portal.example.com/
Vary: Accept-Encoding
Content-Length: 316
Content-Type: text/html; charset=iso-8859-1
(etc)
Qualche idea su come restituire un reindirizzamento con le intestazioni della cache?