从https重定向到http时遇到问题

时间:2019-01-17 08:18:56

标签: web redirect web-config hosting

当我以前从https重定向到http时,我遇到了问题。

我已经将网站http://letsfindcourse.com托管在godaddy上。我没有使用SSL证书。因此,当我使用https而不是http时,出现了隐私错误(您的连接不是私有的)。因此,我尝试将https重定向到http,但是我的代码无法正常工作。

<rule name="Redirect to http" stopProcessing="true">
    <match url="(.*)" />
    <conditions>
        <add input="{HTTP}" pattern="off" ignoreCase="true" />
    </conditions>
    <action type="Redirect" url="http://{HTTPS_HOST}{REQUEST_URI}" redirectType="Permanent" appendQueryString="false" />
</rule>

所以请建议我如何解决此问题。

0 个答案:

没有答案