Angular 2 – 始终重定向到https://而不是使用http://

前端之家收集整理的这篇文章主要介绍了Angular 2 – 始终重定向到https://而不是使用http://前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个Angular 2应用程序,我只想在https上运行.
重定向使用http的地址以使用https的最佳方法是什么?
我已经向Angular2站点添加了一个web.config,其中包含以下内容.请记住,这是针对IIS托管的应用程序.
现在,所有地址都重定向到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>
原文链接:https://www.f2er.com/angularjs/142424.html

猜你在找的Angularjs相关文章