IIS 7.5 URL 重写:重定向规则似乎无法从旧域到新域

IIS 7.5 URL Rewrite: Redirect Rule does not appear to work from old domain to new domain

我想了解为什么在 IIS 中创建的以下规则在有人尝试进入网站时不起作用。

基本上我们有一个旧域和一个新域。我希望所有访问旧域的人都被重定向到我们新域的登录页面。

我正在为站点使用 ASP MVC4,我已经为域添加了绑定并更新了 DNS。

我的规则是:

               <rule name="http://www.olddomain.com to landing page" patternSyntax="Wildcard" stopProcessing="true">
                <match url="*" />
                <action type="Redirect" url="http://www.new-domain.co.uk/LandingPage" />
                <conditions logicalGrouping="MatchAny">
                    <add input="{HTTP_HOST}" pattern="http://www.olddomain.com" />
                    <add input="{HTTP_HOST}" pattern="http://olddomain.com" />
                    <add input="{HTTP_HOST}" pattern="http://www.olddomain.com/" />
                    <add input="{HTTP_HOST}" pattern="http://olddomain.com/" />
                </conditions>
            </rule> 

目前,如果有人输入旧域地址,重定向不会执行任何操作,网站只会加载,就像您通过新域进入主页一样。

谁能告诉我哪里错了?

更新 下面提供的规则似乎仍然不起作用,所以我决定尝试在 fiddler 中打开我的旧域地址,看看我是否可以看到重定向或响应。我得到的只是一个 200 HTTP 响应,仅此而已。这让我觉得重写规则实际上被忽略了,但我不知道为什么。

{HTTP_HOST} 将始终只是主机名,不包括协议或路径。尝试将您的规则更改为:

<rule name="http://www.olddomain.com to landing page" patternSyntax="Wildcard" stopProcessing="true">
    <match url="*" />
    <action type="Redirect" url="http://www.new-domain.co.uk/LandingPage" />
    <conditions logicalGrouping="MatchAny">
        <add input="{HTTP_HOST}" pattern="^www\.olddomain\.com$" />
        <add input="{HTTP_HOST}" pattern="^olddomain\.com$" />
    </conditions>
</rule> 

我为此纠结了好几天。 10-20重写规则我试过失败的原因是:

  1. 如果您尝试在 VisualStudio(2012/2013/2015) 中重定向,它无法在实际的 IIS 托管站点中工作,因为 VS 在调试时生成自己的证书(当您在项目属性中指定时)以及权限问题VS照顾
  2. IIS 中的站点应该有有效的(没有来自 thawte/verisign 启用网站的文件的复制粘贴,甚至是由 snk.exe 生成的自签名)证书;请不要假设没有有效证书就可以。 (IIS 8 和 10 中的自签名(也称为开发证书)对我有用;购买和自签名之间的区别在这里 https://www.sslshopper.com/article-how-to-create-a-self-signed-certificate-in-iis-7.html)。应该安装证书,因为 IIS 可以有多个证书,但每个网站都应该使用自己单独的证书。
  3. 站点绑定应同时具有 http(80) 和 https(443)
  4. 现在重定向语法出现了;有几个在互联网上;您可以轻松获得正确的正则表达式
  5. 还必须考虑到故事的另一方面,可以使用 Global.asax->Application_BeginRequest 或 MVC 4/5 中的 ActionFilter 来处理重定向。 使用配置或以编程方式进行重定向可能会导致不同的错误(TOO_MANY_REDIRECTS,在 web.config 中)
  6. 我遇到的另一个问题是从 http->https 重定向工作正常,但我无法从 https->http 恢复;
  7. 从可用选项中考虑您的场景(通常不应混合)

HTTP重定向:

Request 1 (from client):    Get file.htm
Response 1 (from server): The file is moved, please request the file newFileName.htm
Request 2 (from client):    Get newFileName.htm
Response 2 (from server): Here is the content of newFileName.htm

网址重写:

Request 1 (from client):     Get file.htm
URL Rewriting (on server):   Translate the URL file.htm to file.asp
Web application (on server): Process the request (run any code in file.asp)
Response 1 (from server):    Here is the content of file.htm (note that the client does not know that this is the content of file.asp)
whether you need HttpRedirect or UrlRewrite
https://weblogs.asp.net/owscott/rewrite-vs-redirect-what-s-the-difference