728x90
300x250
ssl 적용이 완료되었다하더라도 http 가 있고 https 가 있다
당연히 https 로 강제로 보내줘야 하는데 httpd.conf 에서 해당 부분을 조정할수있다.
아래처럼 httpd.conf 의 해당 도메인의 정보를 갖고있는 virtualhost 부분을 수정해줘야한다.
<VirtualHost *:80>
DocumentRoot /var/www/html/myDomain.kr
ServerName myDomain.kr
ServerAlias www.myDomain.kr
ErrorLog logs/myDomain.kr-error_log
CustomLog logs/myDomain.kr-access_log common
RewriteEngine On
RewriteCond %{SERVER_NAME} =www.myDomain.kr [OR]
RewriteCond %{SERVER_NAME} =myDomain.kr
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>
728x90
300x250
'IT > 잡다구리' 카테고리의 다른 글
[Linux] 홈페이지 복사관련 기록 [Centos, Apache, mysql] (0) | 2021.04.01 |
---|---|
[IE] 익스플로러에서 wav 파일 재생 (0) | 2021.03.25 |
[SSL] Let's Encrypt SSL 인증서 설치 Centos8 , crontab (0) | 2021.02.22 |
[Script] 클래스로 스타일 조정 : No Jquery getElementsByClassName (0) | 2021.02.16 |
[SSL] Let's Encrypt SSL 인증서 갱신시 오류 404 (0) | 2021.02.01 |