HTTP ---> HTTPs 리디렉트, IIS
페이지 정보
작성자 상석하대 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 에필로그 댓글 0건 조회 1,532회 작성일 23-01-14 15:43본문
IIS URL 재작성 모듈이 설치돼 있어야 한다.
web.config를 편집한다.<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
ㆍㆍㆍ
<rewrite>
<rules>
<rule name="HTTP to HTTPs Redirect" 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>
ㆍ ㆍ ㆍ
</system.webServer>
</configuration>
댓글목록
등록된 댓글이 없습니다.