506 Variant Also Negotiates는 서버 설정 오류를 나타냅니다. 투명한 콘텐츠 협상(transparent content negotiation)에서 협상 대상으로 선택된 변형(variant)이 그 자체로 또 협상 가능한 리소스여서, 협상이 순환에 빠졌음을 뜻합니다.
이는 클라이언트의 잘못이 아니라 서버 구성 실수입니다. RFC 2295의 투명 협상 기능은 실제로 거의 쓰이지 않으므로, 이 코드도 실무에서 매우 드뭅니다.
GET /document HTTP/1.1
Host: example.com
Negotiate: transHTTP/1.1 506 Variant Also Negotiates
Content-Type: text/plain
A content-negotiation configuration error occurred on the server.# Point a resource directly at a concrete file, not another negotiable resource
location = /document {
try_files /document.en.html =404;
}