用于将特定站点的 http 重定向到 https 的 ISAPI Rewrite 3 规则
我在运行 ISAPI Rewrite 3(免费添加)的单个 IIS 6 服务器上有多个站点。
如果请求以 http 形式传入,我只需将其中一个站点重定向到 https。
示例:我需要 http://bar.foo.com
重定向到 https://bar.foo.com
。我不希望此重定向影响 http://www.foo.com
或 http://foo.com
或 http://meh。 foo.com
。
此问题的重定向语法是什么?
我发现 http://www.helicontech.com/isapi_rewrite/doc/examples.htm< /a> 显示如何将所有请求重定向到 https。
I have multiple sites on a single IIS 6 server running ISAPI Rewrite 3 (free addition).
I need to redirect just one of the sites to https if the request comes in as http.
Example: I need http://bar.foo.com
to redirect to https://bar.foo.com
. I don't want this redirect to affect http://www.foo.com
or http://foo.com
or http://meh.foo.com
.
What is the redirect syntax for this problem?
I found http://www.helicontech.com/isapi_rewrite/doc/examples.htm which shows how to redirect all requests to https.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
规则应该如下所示:
The rules should look like:
这看起来是一件容易做的事
That looks like an easy thing to do