Apache mod_proxy 使用绝对域名进行重定向

Apache mod_proxy 使用绝对域名进行重定向

我正在使用 apache 中的示例通过代理重写 URL:

RewriteRule    ^widget/(.*)$  http://product.example.com/widget/$1  [P]

我想为此设置一个绝对域:

RewriteRule    ^de.domain.com/widget/(.*)$  http://product.example.com/widget/$1  [P]

但之后却不起作用。问题出在哪里?

相关内容