0

我正在寻找将属性列表重定向到新的子域和域结构。例如,我想重定向

http://www.example.com/idx/details.php?thenALongString...

http://mls.example.com/idx/3494/details.php?thenALongString...

任何帮助将非常感激!

4

2 回答 2

0

我能够弄清楚。我使用了以下内容:

RedirectMatch 301 /idx/details.php(.*) http://mls.lisasellspontevedra.com/idx/3494/details.php

旧 URL 上的动态字符串被转移到新位置的末尾。

于 2012-04-26T14:03:11.767 回答
0

我认为这应该有效:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.example.com$ [NC]
RewriteRule ^idx/details.php http://mls.example.com/idx/3494/details.php [R=301,L]
于 2012-04-25T22:16:42.990 回答