https://testitnow.in/edgar是建立在ASP上的网站。我在IIS中配置了自动重定向但是,如果我在Web浏览器中键入testitnow.in,我收到以下错误 - “403 - 禁止访问:访问被拒绝。 您无权使用您提供的凭据查看此目录或页面。“
但如果我输入https://testitnow.in或www.testitnow.in,它会重定向到https://testitnow.in。请帮我解决这个问题。
答案 0 :(得分:1)
尝试更新您的web.config
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<clear />
<rule name="Redirect to https" stopProcessing="true">
<match url=".*" />
<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>
</system.webServer>
</configuration>