私はus.example.com、gb.example.com、fr.example.com、pl.example.comなど301リダイレクト
のように私のメインのexample.com内の多くのサブドメインを持っています今は、存在しないサイトから新しいサイトに301のリダイレクトを行う必要があります。
Redirect 301 /system_example/systems/system_abc.html http://pl.example.com/system_example/systems/all_systems.html
しかし、そのパス/system_example/systems/system_abc.html
を持っている他のすべてのサブドメインが今http://pl.example.com/system_example/systems/all_systems.html
リダイレクトはpl.example.comサブドメイン内でのみ行いたいだけです。他のすべてのリダイレクトはそのままにしておく必要があります。このタイプのリダイレクトのみが機能していても、そうでない場合:
Redirect 301 http://pl.example.com/system_example/systems/system_abc.html http://pl.example.com/system_example/systems/all_systems.html
.htaccess経由ですべてのことを達成できますか?
このパターンはすべてのサブドメインに適用するか、単に「pl.example.com」に適用する必要がありますか? – hjpotter92
現在のところ、1つのサブドメインのみです。リダイレクト301 http://pl.example.com/system_example/systems/system_abc.html http://pl.example.com/system_example/systems/all_systems.html – Marcin