http://shop.test.comのみ を http://www.test.com/fedex-orders/にリダイレクトする必要があります
ただホームページ。他に何もありません。つまり、 http://shop.test.com/?page = blogはリダイレクトすべきではありません。
http://shop.test.comのみ を http://www.test.com/fedex-orders/にリダイレクトする必要があります
ただホームページ。他に何もありません。つまり、 http://shop.test.com/?page = blogはリダイレクトすべきではありません。
回答:
location = / {
return 301 http://www.test.com/fedex-orders/;
}
=
in の使用は、URLが完全に一致する必要があることを指定し、URLの前後には何もありません。location
= /
/
Apacheでこれを解決する方法の答えを探す場合。これはあなたが望むものです:
RedirectMatch permanent ^/$ http://www.test.com/fedex-orders/