System/OS
2022.02.03 04:20

[apache2] Redirect HTTP to HTTPS

조회 수 694 추천 수 0 댓글 0
Atachment
첨부 '1'
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

apache01.jpg




<VirtualHost *:80> 
  ServerName example.com
  ServerAlias www.example.com

  Redirect permanent / https://example.com/
</VirtualHost>

<VirtualHost *:443>
  ServerName example.com
  ServerAlias www.example.com

  Protocols h2 http/1.1

  # SSL Configuration

  # Other Apache Configuration

</VirtualHost>



<VirtualHost *:80> 
  ServerName example.com
  ServerAlias www.example.com

  Redirect permanent / https://example.com/
</VirtualHost>

<VirtualHost *:443>
  ServerName example.com
  ServerAlias www.example.com

  Protocols h2 http/1.1

  <If "%{HTTP_HOST} == 'www.example.com'">
    Redirect permanent / https://example.com/
  </If>

  # SSL Configuration

  # Other Apache Configuration

</VirtualHost>




[출처] https://linuxize.com/post/redirect-http-to-https-in-apache/




?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
186 System/OS 개인적으로 쓰고 있는 zshrc 파일 hooni 2022.02.25 837
185 System/OS 개인적으로 쓰고 있는 bash_profile hooni 2015.01.16 850
184 System/OS [펌] 마이크로서비스, 모노리포, SRE, ... 덮어놓고 구글 따라하면 안 되는 기술들 file hooni 2020.10.15 953
183 System/OS [windows] 패스워드를 잊어먹었을때.. hooni 2003.04.23 17298
182 System/OS [windows] 최근 열어본 문서목록 안나오게 하는 방법 hooni 2013.04.23 25487
181 System/OS [windows] 종료, 재시작, 로그아웃 아이콘 만들기 hooni 2013.04.23 18103
180 System/OS [windows] 인터넷 익스플로러(IE) 도구모음 표시줄에 아이콘 추가 file hooni 2013.04.23 18219
179 System/OS [windows] 윈도우즈 콘솔에서 정품인증 하는 방법 hooni 2017.05.24 5370
178 System/OS [windows] 윈도우 사용자 계정 로그인 암호 분실, 암호 변경하는 방법 file hooni 2015.07.09 21382
177 System/OS [windows] 원격 데스크탑(터미널 서비스) 포트 변경 hooni 2013.04.23 16305
176 System/OS [windows] 여러가지 활용 팁 hooni 2003.04.23 19979
175 System/OS [windows] 배치(bat)파일 제작 방법 hooni 2003.04.23 17012
174 System/OS [windows] 도스 사용 팁 hooni 2003.04.23 17816
173 System/OS [windows] 98/ME 속도 빠르게 튜닝(부팅,메모리,레지스터) hooni 2003.04.23 50452
172 System/OS [web] 웹서비스 취약점 자료.. (논문첨부) file hooni 2003.04.23 17944
171 System/OS [virtualbox] VirtualBox에 Ubuntu 설치하기 file hooni 2019.11.22 916
Board Pagination Prev 1 2 3 4 5 ... 13 Next
/ 13