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>

 

相关文章:

  • 2021-12-26
  • 2022-12-23
  • 2022-01-07
  • 2021-12-14
  • 2022-12-23
  • 2021-10-17
  • 2021-08-12
猜你喜欢
  • 2022-01-02
  • 2022-12-23
  • 2022-01-02
  • 2021-12-08
  • 2022-02-24
  • 2021-10-20
  • 2021-08-04
相关资源
相似解决方案