Iis
角度和 IIS。重定向到 HTTPS,保留完整的 URL
對於需要託管在 IIS 伺服器上的 Angular 應用程序,我必須將完整的 URL 從 HTTP 重定向到 HTTPS。
我創建了以下規則,但它不起作用,它只適用於主域(如http://www.somedomain.com>,它重定向就好了,但使用<http://www.somedomain.com/route
這是我的規則。我究竟做錯了什麼?
<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> <rule name="Angular Routes" stopProcessing="true"> <match url=".*" /> <conditions logicalGrouping="MatchAll"> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> </conditions> <action type="Rewrite" url="./index.html" /> </rule> </rules>
有幾種方法可以進行相同的重定向。如果您使用 url=“https://{HTTP_HOST}/{R:1}” 必須添加 appendQueryString=“true”,否則將不會附加 URI 路徑。
所以配置應該如下所示:
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="Redirect to HTTPS" enabled="true" stopProcessing="true"> <match url="(.*)" /> <conditions> <add input="{HTTPS}" pattern="^OFF$" /> </conditions> <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" appendQueryString="true" /> </rule> </rules> </rewrite> </system.webServer> </configuration>
但是我通常使用另一個帶有 301 重定向的規則,在某些情況下瀏覽器可以更好地處理它。在這種情況下,您必須使用另一種類型的 uri:url=“https://{HTTP_HOST}{REQUEST_URI}”
<configuration> <system.webServer> <rewrite> <rules> <rule name="HTTPS force" enabled="true" stopProcessing="true"> <match url="(.*)" /> <conditions> <add input="{HTTPS}" pattern="^OFF$" /> </conditions> <action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Permanent" /> </rule> </rules> </rewrite> </system.webServer> </configuration>