apache2 mod_proxy sem 301 movido permanentemente?

1

É possível não enviar um 301 movido permanentemente para o cliente ao usar o mod_proxy? Eu gostaria que o cliente lidasse com o proxy reverso da maneira mais oposta possível.

Configurações do meu host virtual: snippet relevante:

ProxyPreserveHost On
ProxyPass /GTM http://192.168.1.27/GTM
ProxyPassReverse /GTM http://192.168.1.27/GTM

wget localhost/GTM :

--2011-09-27 21:54:22--  localhost/GTM
Resolving localhost... ::1, 127.0.0.1
Connecting to localhost|::1|:80... failed: Connection refused.
Connecting to localhost|127.0.0.1|:80... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: localhost/GTM/ [following]
--2011-09-27 21:54:22--  localhost/GTM/
Reusing existing connection to localhost:80.
HTTP request sent, awaiting response... 200 OK
    
por Guy Sensei 27.09.2011 / 18:13

1 resposta

1

O Apache não gera 301s por qualquer motivo, a menos que você o informe com um RewriteRule ... [R=301] ou Redirect .

O servidor ao qual você está fazendo proxy é o que gera os redirecionamentos. Tente definir ProxyPreserveHost On no Apache, caso o aplicativo esteja tentando impor um nome de host específico.

    
por 27.09.2011 / 18:19