SSL证书及使用

https://cloud.tencent.com/document/product/400/35225

https://blog.csdn.net/qq_16503045/article/details/90774917

	<system.webServer>
		<rewrite>
			<rules>
				<rule name="HTTP to 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>
			</rules>
		</rewrite>
	</system.webServer>
原文地址:https://www.cnblogs.com/xiongwei/p/14980906.html