IIS 7 URL 重定向

发布于 2024-12-17 07:24:48 字数 633 浏览 1 评论 0原文

如果用户在浏览器中输入 http://mysite.com,用户应该被重定向到 https://mysite.com

可以通过以下方式完成吗?

<rewrite>
<rules>
    <rule name="Enforce canonical hostname" stopProcessing="true">
        <match url="(.*)" />
        <conditions>
            <add input="{HTTP_HOST}" negate="true" pattern="^www\.mysite\.com$" />
        </conditions>
        <action type="Redirect" url="https://www.mysite.com/{R:1}" redirectType="Permanent" />
    </rule>
</rules>

If a user type http://mysite.com in browser, the user should be redirected to https://mysite.com

Could it be done by the following.

<rewrite>
<rules>
    <rule name="Enforce canonical hostname" stopProcessing="true">
        <match url="(.*)" />
        <conditions>
            <add input="{HTTP_HOST}" negate="true" pattern="^www\.mysite\.com$" />
        </conditions>
        <action type="Redirect" url="https://www.mysite.com/{R:1}" redirectType="Permanent" />
    </rule>
</rules>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

赢得她心 2024-12-24 07:24:48

如果您并不真正关心重定向回您输入的 URL 的相同“SSL 版本”,那么此方法每次都有效。

在 IIS 中确保强制执行 SSL。
然后为代码“403.4”添加自定义错误页面
“选择使用 302 重定向进行响应”并输入主页的 https:\ URL。

当用户输入例如 http://mysite.com 时,他们会被重定向回 https://mysite.com

但是,如果他们输入 http://mysite.com/Stuff/Foo?All 那么他们就是也重定向回主页。

在我遇到的大多数情况下,这种行为就足够了。

If you don't really care about redirecting back to the same "SSL version" of the URL you entered, then this method works every time.

In IIS make sure SSL is enforced.
Then add a custom Error Page for the code "403.4"
"Choose Respond with a 302 Redirect" and enter the https:\ URL of your homepage.

When a user enters e.g. http://mysite.com they are redirected back to https://mysite.com

However, if they enter http://mysite.com/Stuff/Foo?All then they are also redirected back to the homepage.

In most situations I've come across, this behaviour is enough.

找回味觉 2024-12-24 07:24:48

这应该包含您需要此处

This should have all the info you need and here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文