3
http를 https로 리디렉션하는 표준 iis url 재 작성 모듈 기술을 사용하면 iisnode와 작동하지 않습니다.URL iisnode에서 https로 http를 다시 작성합니다.
나는 다음과 같은 규칙을 구성 http를 https로 리디렉션하는 데 :
<rule name="HTTP to Prod HTTPS redirect" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="off" ignoreCase="true" />
</conditions>
<action type="Redirect" redirectType="Found" url="https://{HTTP_HOST}/{R:1}" />
</rule>
문제 것은 http://domain.net를 요청하는 것은 "서버를 제거하는 방법을 https://domain.net/server.js
어떤 아이디어로 재이다 .js "URL의 일부입니까?