IIS 301 重定向

发布于 2024-08-09 17:50:34 字数 407 浏览 1 评论 0原文

我们已将网站迁移到新网站(不要问为什么?)

为了帮助我们完成转换,我们在 IIS 中创建了从旧网站到新网站的 301 重定向。重定向看起来像 http://www.newWebSiteApp.com$S$Q 这可以很好地处理所有子目录以及查询字符串。我们测试了重定向并且效果很好,除了 https 请求。

新旧网站都有混合协议(有些页面是http,有些页​​面是https)。 https 的重定向采用 http 而不是 https。

我们检查了 IIS 设置,用谷歌搜索,却一无所获。

那么,是否可以重定向 http -> http 和 https -> https 在同一网站上吗?

We have migrated our web site to new web site (don't ask why?)

In order to help us with the transition, we created 301 redirect, from the old web site to the new web site, in IIS. The redirect looks like
http://www.newWebSiteApp.com$S$Q
This handles all the sub directory as well as query string nicely. we tested the redirect and works great, except for https requests.

Both the new and old web sites have mixed protocol (some pages are http while other https). The redirect for https takes to http not https.

We checked IIS setting, googled, and pulled our hair with no result.

So, Is it possible to redirect http -> http and https -> https on the same web site?

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

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

发布评论

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

评论(1

小…楫夜泊 2024-08-16 17:50:34

您可以使用 IIRF 进行重定向。它会是这样的:

RewriteCond   %{HTTPS} off
RewriteCond   %{HTTP_HOST}  ^www\.oldwebsite\.com$
RedirectRule  ^(.*)$        http://www.newwebsite.com$1 [R=301]

RewriteCond   %{HTTPS} on
RewriteCond   %{HTTP_HOST}  ^www\.oldwebsite\.com$
RedirectRule  ^(.*)$        https://www.newwebsite.com$1 [R=301]

You could use IIRF to do redirects. It would be something like this:

RewriteCond   %{HTTPS} off
RewriteCond   %{HTTP_HOST}  ^www\.oldwebsite\.com$
RedirectRule  ^(.*)$        http://www.newwebsite.com$1 [R=301]

RewriteCond   %{HTTPS} on
RewriteCond   %{HTTP_HOST}  ^www\.oldwebsite\.com$
RedirectRule  ^(.*)$        https://www.newwebsite.com$1 [R=301]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文