System/OS
2022.02.03 04:20
[apache2] Redirect HTTP to HTTPS
조회 수 2948 댓글 0
첨부 '1' |
|
---|
<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/
-
개인적으로 쓰고 있는 zshrc 파일
-
[apache2] Redirect HTTP to HTTPS
-
macOS에 node, npm 설치하기 (homebrew)
-
[iOS] 시뮬레이터에 푸시 알림을 보내는 방법
-
[iOS] Xcode 불필요한 캐시 삭제하기
-
[swift] 실행시간 측정하기
-
[vim] vim 명령으로  문자 제거하기 (remove 65279 bomb)
-
[js] show/hide 이벤트 감시 (Observing show/hide event)
-
[swift] popToRoot 모달뷰, 네비게이션컨트롤러 한꺼번에 닫기
-
[swift] NotificationCenter 간단 예제
-
[kotlin] 코틀린 안드로이드 앱 버전/빌드 정보
-
[ubuntu] 우분투 18.04에 PHP5 설치하기