プロパティ リストを新しいサブドメインとドメイン構造にリダイレクトすることを検討しています。たとえば、リダイレクトしたい
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]