您好,尝试通过使用HTTPS协议使我的网站更安全。
这是我已经尝试过的:
我正在使用IIS(iisnode)运行nodejs
如此:
<rule name="node-redirect" stopProcessing="true">
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
</conditions>
<action type="Rewrite" url="bin/www" />
</rule>
然后:
<rule name="http to https" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="^OFF$" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="SeeOther" />
</rule>
但是似乎没有进展,我尝试通过以HTTP重定向开始,然后以节点重定向的方式交换代码, 而且我看到URL正在更改,就像我想要的https://。 但得到:
将您重定向了太多次。尝试清除您的cookie。 ERR_TOO_MANY_REDIRECTS
我已经搜索了所有可能的解决方案,但似乎没有任何效果, 任何帮助将不胜感激。