Zoeken…


Forceer HTTPS met de herschrijfregel

Dit voorbeeld laat zien hoe u IIS Rewrite-regels kunt gebruiken om HTTPS te forceren door alle HTTP-aanvragen een 301 (permanente) omleiding naar de HTTPS-pagina te laten retourneren.

Dit is meestal beter dan het gebruik van het kenmerk [RequireHttps] omdat het kenmerk een 302-omleiding gebruikt en omdat het zich in de MVC-pijplijn bevindt, is het veel langzamer dan op IIS-niveau.

   <rewrite xdt:Transform="Insert">
      <rules>
        <rule name="Enforce HTTPS WWW" stopProcessing="true">
          <match url=".*" />
          <conditions logicalGrouping="MatchAll" trackAllCaptures="true">
            <add input="{HTTP_HOST}" pattern="^(?!www)(.*)"/>
            <add input="{URL}" pattern="^(.*)"/>
            <!-- {URL} Gives the base portion of the URL, without any querystring or extra path information, for example, "/vdir/default.asp". -->
          </conditions>
          <action type="Redirect" url="https://www.{C:1}{C:2}" appendQueryString="true" redirectType="Permanent" />
        </rule>
      </rules>
    </rewrite>


Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow