SSL 종료로드 밸런서에서 트래픽을받는 서버가 있습니다.이 경우 서버는 포트 80을 통한 HTTP로 http_x_forwarded_proto
"https"로 나타납니다.
직접 HTTPS 트래픽 또는 전달 된 HTTPS 트래픽 만 허용하는 mod_rewrite 규칙이 필요합니다.
나는 지금까지 이것을 가지고있다 :
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteCond %{HTTP:http_x_forwarded_proto} != https
RewriteCond %{HTTP:http_x_forwarded_proto} != HTTPS
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
하지만 나는 점점
RewriteCond : 잘못된 플래그 구분 기호
오류.
이 작업을 수행하려면 무엇을 수정해야합니까? 이것이 최선의 방법입니까?