Apacheでのpernament(301)リダイレクトの作成に問題があります。
私は2つのドメインを持っています:
olddomain.com
多くのサブドメイン
があります
newdomain.com
そして私は次のようにリダイレクトを行いたい:
ユーザーが入力した場合http://anysubdomain.olddomain.com
は、にリダイレクトする必要がありますhttp://anysubdomain.newdomain.com
ユーザーが入力した場合http://olddomain.com/something
は、にリダイレクトする必要がありますhttp://newdomain.com/something
ユーザーが入力した場合http://olddomain.com/different/index.html
は、にリダイレクトする必要がありますhttp://newdomain.com/different/index.html
ユーザーが入力した場合http://example.olddomain.com/ex/index.html
は、にリダイレクトする必要がありますhttp://example.newdomain.com/ex/index.html
これをどのように設定すればよいかわかりません。
<VirtualHost *:80>
ServerName olddomain.com
</VirtualHost>
よろしく