使用apache vhost配置重定向到新域

时间:2017-11-24 14:52:16

标签: apache httpd.conf vhosts

我有一个apache vhost配置如下。我想要来自

的所有要求

somedomain.com/loadproduct?product=dell-inspiron-15

重定向到

someotherdomain.com/dell-inspiron-15 即可。

我可以从vhost配置执行此操作吗?请注意,我在网址中有查询参数。

Listen 12567
NameVirtualHost *:12567

<VirtualHost *:12567>
    ServerName somedomain.com
    ProxyPreserveHost On

    RewriteEngine On
    RewriteRule ??
</VirtualHost>

这里的任何线索都非常感谢。

1 个答案:

答案 0 :(得分:1)

您可以使用(而不是RewriteRule ??):

RewriteCond %{QUERY_STRING} (?:^|&)product=([^&]+) [NC]
RewriteRule ^/?loadproduct$ http://someotherdomain.com/%1? [R=301,L,NC]