HTTP到HTTPS重定向规则的404错误

时间:2019-06-18 08:29:42

标签: redirect url-rewriting web-config url-redirection

http://domain.co.ukhttps://domain.co.uk格式输入根域和所有子站点时,出现以下错误

  

HTTP错误404。找不到请求的资源。

我们正在运行Windows Server 2012R2,我正在编辑web.config文件,而不是使用IIS。

我已经完成了以下重定向,但是显然它没有按照我的意愿去做。

<rule name="Force WWW and SSL" enabled="true" stopProcessing="true">
    <match url="(.*)" />
    <conditions logicalGrouping="MatchAny">
            <add input="{HTTP_HOST}" pattern="^[^www]" />
            <add input="{HTTPS}" pattern="off" />
    </conditions>
<action type="Redirect" url="https://www.domain.co.uk/{R:1}" appendQueryString="true" redirectType="Permanent" />
</rule>

如果有人能让我知道我要去哪里,我将不胜感激。

0 个答案:

没有答案