我已经向Angular2站点添加了一个web.config,其中包含以下内容.请记住,这是针对IIS托管的应用程序.
现在,所有地址都重定向到https版本.
原文链接:https://www.f2er.com/angularjs/142424.html现在,所有地址都重定向到https版本.
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <clear /> <rule name="Redirect to https" stopProcessing="true"> <match url="(.*)" /> <conditions> <add input="{HTTPS}" pattern="off" ignoreCase="true" /> </conditions> <action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Permanent" appendQueryString="false" /> </rule> </rules> </rewrite> </system.webServer> </configuration>