IIS 7 URL 重定向
如果用户在浏览器中输入 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您并不真正关心重定向回您输入的 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.
这应该包含您需要和此处
This should have all the info you need and here