Как перенаправить https в одностраничном приложении (IIS) - PullRequest
0 голосов
/ 04 января 2019

Я пытаюсь перенаправить запросы http на порт 80 на запросы https на порт 443 в IIS. У меня есть следующий набор правил:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
    <directoryBrowse enabled="false" />
    <defaultDocument enabled="true">
      <files>
        <clear />
        <add value="index.html" />
      </files>
    </defaultDocument>

    <rewrite>
      <rules>
        <rule name="AngularJS Routes" stopProcessing="true">
          <match url=".*" />
          <conditions logicalGrouping="MatchAll">
            <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
            <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
            <add input="{REQUEST_URI}" pattern="^/(api)" negate="true" />
          </conditions>
          <action type="Rewrite" url="/" />
        </rule>
        <rule name="https">
          <match url=".*" />
            <conditions>
              <add input="{HTTPS}" pattern=".*" />
            </conditions>
          <action type="Rewrite" url="https://{R:0}" />
        </rule>
      </rules>
    </rewrite>
  </system.webServer>
</configuration>

Возвращает HTTP Error 403.14 - Forbidden при попытке загрузить сайт через http.

Как я могу перенаправить сайты, сохраняя при этом другое правило шаблона?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...