반응형
vhost 파일에서 아래문구를 그대로 추가해주면 된다.
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
예)
<VirtualHost *:80>
ServerName harulife.kr
DocumentRoot /home/haru
CustomLog /usr/local/apache/logs/harulife.kr
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
</VirtualHost>
'리눅스 > apache' 카테고리의 다른 글
htaccess 파일로 암호걸기 (0) | 2021.06.07 |
---|---|
apache-tomcat 연동 및 로드벨런싱 (0) | 2020.09.16 |
make시 undefined reference to `crypt' 발생시 (0) | 2017.08.30 |
apache 2.4에 modsecurity-2.9 설치 (0) | 2017.07.03 |
nginx와 php 연동방법 (0) | 2017.07.03 |