我在我的web.config文件中有这个:
<system.webServer>
<rewrite>
<rules>
<rule name="HTTP to HTTPS redirect" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="off" ignoreCase="true" />
</conditions>
<action type="Redirect" redirectType="Found" url="https://{HTTP_HOST}/{R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
我检查过规则是在IIS管理器中添加的,但它似乎没有起作用。我已经要求关闭SSL。
因此,如果我访问webvts.mprin.com或http://webvts.mprinc.com,我会收到404找不到的错误。但如果我去https://webvts.mprinc.com,一切都会奏效。
答案 0 :(得分:2)
我的SharePoint Web应用程序遇到了这个问题。这是一个具有Extranet扩展的Intranet。 Extranet仅设置为443.一旦我在IIS中为端口80添加了Extranet应用程序的绑定,重定向就成功了。