728x90
RewriteEngine On
# ssl
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R,L]
#RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
# non-www
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
ssl을 적용하게 되면 강제로 https로 이동하게 하는 경우가 있는데 그럴 때 위 ssl 부분만 사용하면 됩니다.
혹시나 홈페이지에서 www를 떼고 싶다면 위 non-www 부분만 사용하면 됩니다.
# force https for sub domain
RewriteCond %{HTTPS} off
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
반응형
'Etc' 카테고리의 다른 글
부동산 용어 영어로 (0) | 2020.03.31 |
---|---|
[에디트플러스]html 파일 내에 있는 php 구문 컬러 나오게... (0) | 2020.03.26 |
jsfiddle.net에서 console 보는 방법 (0) | 2020.02.28 |
회사 직위 영어로... (0) | 2020.02.20 |
전화번호, 핸드폰번호 (0) | 2020.02.13 |