난 단지 리디렉션 할 필요가 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/