zoukankan      html  css  js  c++  java
  • https证书随记

    下载证书之后:

    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>

  • 相关阅读:
    js学习(4) 函数
    Js学习(3) 数组
    NGUI的UILabel
    unity模型部分替换
    工作流程
    unity 资源内存管理
    unity 跑酷demo
    unity动画相关
    unity之C#回调函数
    maya导入unity
  • 原文地址:https://www.cnblogs.com/mrray/p/7840324.html
Copyright © 2011-2022 走看看