HTTP到https重定向-iis8.5 url重写2.0重定向规则不起作用 [英] http to https redirect - iis8.5 url rewrite 2.0 redirect rule not working

查看:276
本文介绍了HTTP到https重定向-iis8.5 url重写2.0重定向规则不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我很难让下面的重定向规则起作用...

I am having a hard time getting the below redirect rule to work...

<rules>
<rule name="Relative Path Rewrite" stopProcessing="false">
  <match url=".*" />
  <conditions logicalGrouping="MatchAll">
    <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
    <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
    <add input="{REQUEST_URI}" pattern="^/$" negate="true" />
  </conditions>
  <action type="Rewrite" url="/" />
</rule>
<rule name="Ssl Redirect" stopProcessing="false">
    <match url="(.*)" />
    <conditions>
        <add input="{HTTPS}" pattern="^OFF$" />
    </conditions>
    <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" appendQueryString="true" redirectType="Permanent" />
</rule>
</rules>

问题如下...

如果我输入 http://mywebsite.com ,它将重定向到

If i enter http://mywebsite.com it redirects to https://mywebsite.com no problem.

但是,如果我输入 http://mywebsite.com/faq ,它将重定向到 https://mywebsite.com 而不是

however, if i enter http://mywebsite.com/faq it is redirecting to https://mywebsite.com instead of https://mywebsite.com/faq and i cannot figure out why? It appears to be ignoring the '{R:1}' back reference that would come from my match which should be 'faq'

我已经对此进行了一段时间的斗争,任何关于这里发生的事情的想法都很棒.

I've been battling with this for a while, any ideas on what is going on here would be great.

一些其他信息是,我正在托管一个适用于此规则的angular 4.0网站...

Some additional information is that i am hosting an angular 4.0 site that this rule is applied to...

推荐答案

逆转有效的规则.

<rewrite>
 <rules>
  <rule name="Ssl Redirect" stopProcessing="false">
   <match url="(.*)" />
   <conditions>
    <add input="{HTTPS}" pattern="^OFF$" />
   </conditions>
   <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" appendQueryString="true" redirectType="Permanent" />
  </rule>
  <rule name="Relative Path Rewrite" stopProcessing="false">
   <match url=".*" />
   <conditions logicalGrouping="MatchAll">
    <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
    <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
    <add input="{REQUEST_URI}" pattern="^/$" negate="true" />
   </conditions>
   <action type="Rewrite" url="/" />
  </rule>          
 </rules>
</rewrite>

这篇关于HTTP到https重定向-iis8.5 url重写2.0重定向规则不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆