没有 301 的 apache2 mod_proxy 永久移动了吗?

没有 301 的 apache2 mod_proxy 永久移动了吗?

是否有可能不发送使用 mod_proxy 时,向客户端发送 301 永久移动响应?我希望客户端尽可能不透明地处理反向代理。

我的虚拟主机设置:相关片段:

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

答案1

Apache 不会因任何原因生成 301,除非您使用RewriteRule ... [R=301]或告诉它这样做Redirect

您代理的服务器是生成重定向的服务器。ProxyPreserveHost On如果应用程序试图强制使用特定主机名,请尝试在 Apache 中进行设置。

相关内容