Contents

System/OS
2022.02.03 04:20

[apache2] Redirect HTTP to HTTPS

조회 수 825 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
381 System/OS [linux] Proftpd 설치 가이드 hooni 2003.04.23 13070
380 System/OS [linux] ProFTPD 타임아웃 설정 hooni 2003.04.23 12890
379 System/OS [linux] resolv.con 초기화 되는 문제 hooni 2014.04.05 4687
378 System/OS [linux] root 전환시 패스워드 없이 su 사용하기 hooni 2013.12.22 12766
377 System/OS [linux] root도 삭제하지 못하는 파일 속성 hooni 2003.04.23 12453
376 System/OS [linux] sendmail 설정/사용 hooni 2003.04.23 14625
375 System/OS [linux] split 명령어 hooni 2014.03.11 4369
374 System/OS [linux] SSH에 대한 기본 설명과 설치/설정 hooni 2013.04.23 10629
373 System/OS [linux] ssh에서 원격 파일 전송하기.. hooni 2013.04.23 14201
372 Develop [linux] tar 명령어 뽀개기.. ㅋㅋ hooni 2003.04.23 7751
371 System/OS [linux] The Ultimate Wget Download Guide With 15 Awesome Examples hooni 2020.05.26 969
370 System/OS [linux] vi 편집기 간단한 명령과 환경설정 hooni 2003.04.23 11404
Board Pagination Prev 1 ... 62 63 64 65 66 67 68 69 70 71 ... 98 Next
/ 98