all https 인 사이트에서 apache mod_status 모니터링 열기

조회 1,034 · 댓글 1
hhotrod작성자2019년 1월 28일
현재 설정


RewriteEngine On

RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://%{HTTP_HOST}$1 [R,L]


수정 설정


RewriteEngine On

RewriteCond %{HTTPS} !=on
RewriteCond %{REQUEST_URI} !=/server-status
RewriteRule ^(.*)$ https://%{HTTP_HOST}$1 [R,L]
OOOooOOoo2019년 7월 16일
저희는 이렇게 되어 있네요

RewriteCond %{HTTPS} !=on
RewriteCond %{REQUEST_URI} !^/server-status
RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L]

로그인 후 답글을 남길 수 있습니다.