我正在寻找将属性列表重定向到新的子域和域结构。例如,我想重定向
http://www.example.com/idx/details.php?thenALongString...
至
http://mls.example.com/idx/3494/details.php?thenALongString...
任何帮助将非常感激!
我能够弄清楚。我使用了以下内容:
RedirectMatch 301 /idx/details.php(.*) http://mls.lisasellspontevedra.com/idx/3494/details.php
旧 URL 上的动态字符串被转移到新位置的末尾。
我认为这应该有效:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.example.com$ [NC]
RewriteRule ^idx/details.php http://mls.example.com/idx/3494/details.php [R=301,L]