티스토리 뷰
홈페이지 접속 시 자동으로 https로 변경되게 작업 진행
iis에 우선 url재작성을 위해 프로그램 설치
https://www.iis.net/downloads/microsoft/url-rewrite
다운로드 후 실행 하면 웹플랫폼 설치 관리자가 나오는데 그냥 쭉쭉 설치완료
iis관리자 > 해당사이트 > iis > URL 재작성
위와 같이 세팅하면 사이트 root에 web.config 파일에 아래와 같은 항목이 추가됨
<rewrite>
<rules>
<rule name="refirect to HTTPS" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="^OFF$" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="SeeOther" />
</rule>
</rules>
</rewrite>
http로 접속하면 https로 연결됨.
끝~
'serverSide > windows' 카테고리의 다른 글
SERVER2012 에 MSE 설치 (0) | 2018.10.23 |
---|---|
[IIS] 가상 디렉토리 스크립트 권한 삭제 (0) | 2018.08.18 |
사라진 창 이동 시키기 (0) | 2018.08.14 |
[IIS6] XLSX 파일 다운로드 설정 (0) | 2015.06.10 |
IIS font-face 폰트추가 (0) | 2015.02.06 |
댓글