下载证书之后:

1:域名跳转操作

<system.webServer>
         <rewrite>
             <rules>
                 <rule name="Redirect to https" stopProcessing="true">
                     <match url="(.*)" />
                     <conditions>
                         <add input="{HTTPS}" pattern="^OFF$" />
                         <add input="{HTTPS_HOST}" pattern="^(localhost)" negate="true" />
                     </conditions>
                     <action type="Redirect" url="https://{HTTP_HOST}:449/{R:1}" redirectType="SeeOther" />
                 </rule>
             </rules>
         </rewrite>
     </system.webServer>

相关文章:

  • 2021-12-02
  • 2021-12-02
  • 2021-12-02
  • 2022-12-23
  • 2022-12-23
  • 2021-08-19
  • 2021-12-02
  • 2021-11-28
猜你喜欢
  • 2021-12-02
  • 2021-08-13
  • 2021-04-20
  • 2021-06-09
  • 2021-05-15
相关资源
相似解决方案