网络.配置URL重写器

本文关键字:重写 URL 配置 网络 | 更新日期: 2023-09-27 18:17:44

我想重定向我的登录页面到https,但我不明白为什么我的规则不工作,有人有想法吗?

<rewrite>
            <rules>
                <clear />
                <rule name="Redirect to https" stopProcessing="true">
                    <match url="http://([_0-9a-zA-Z-]+).<mydomaine>.fr(/logon.html)?" />
                    <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>

当我在没有HTTPS协议的url上导航时规则不会执行重定向

网络.配置URL重写器

良好匹配为:([_0-9a-zA-Z-]+)(.<mydomaine>.fr)(/logon.html)?