我需要代理将来自www.server.com的请求传递给home.server.com以设置cookie。 home.server.com设置用户的地理位置。但是,当请求从www.server.com传递到home.server.com时,geoip_ *环境设置将被删除/删除或忽略。
如果我直接去home.server.com,我看到它设置正确。当我从www.server.com开始时,它没有设置(空)。
<code>
RewriteCond %{HTTP_COOKIE} !SESSIONID=
RewriteCond %{REQUEST_URI} !^/[a-z]
RewriteCond %{QUERY_STRING} !^[a-z]
RewriteRule ^(.*)$ http://home.server.com [P,L]
</code>
感谢您的任何建议/意见!我错过了什么?