어리석은 질문 일지 모르지만 이것에 대한 좋은 문서 나 예제를 찾을 수없는 것 같습니다 ...
위치 요청을 사용하여 수신 요청을 필터링 할 때 일치하는 위치 또는 요청 시작 부분에서 다시 작성합니까?
예를 들면 :
location ^~ /category/ {
rewrite ^/category/paid-search-news/?$ /tag/paid-search permanent; # this,
rewrite ^paid-search-news/?$ /tag/paid-search permanent; # this,
rewrite paid-search-news/?$ /tag/paid-search permanent; # or this?
}