gpt4 book ai didi

asp.net - IIS URL 重写 : 403 - Forbidden: Access is denied

转载 作者:行者123 更新时间:2023-12-03 15:53:15 26 4
gpt4 key购买 nike

我安装了 IIS URL Rewrite 2.0并添加规则将所有 http 链接重定向到 https。这是我的 Web.Config代码:

 <rewrite>
<rules>
<rule name="REdirect 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>
</rules>
</rewrite>

一切看起来都很好。但是当我使用 http 访问我的网站时,它会抛出 403 错误。
403 - Forbidden: Access is denied.
You do not have permission to view this directory or page using the credentials that you supplied.

IIS 7.5 启用了 TLS 1.0。

我在哪里可以获得更多关于 403 错误类型的信息?

最佳答案

在 IIS 中启用了 SSL。我刚看完 somewhere在 SSL 设置 Require SSL使用 URL Rewrite 2.0 时需要取消选中。

我取消选择 Require SSL并单击应用。它现在工作正常。

关于asp.net - IIS URL 重写 : 403 - Forbidden: Access is denied,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37613359/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com