IIS 7.5 URL重写:重定向规则似乎不适用于旧域到新域

问题描述 投票:0回答:2

我试图理解为什么当一个人试图进入该站点时,在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响应,仅此而已。这让我觉得重写规则实际上被忽略但我不明白为什么。

asp.net-mvc-4 url redirect iis url-rewrite-module
2个回答
1
投票

{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> 

0
投票

几天来我一直在努力。我试过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. 故事的另一方面也必须考虑使用MVC 4/5中的Global.asax-> Application_BeginRequest或ActionFilter来处理重定向。使用config或以编程方式执行重定向可能会导致不同的错误(在web.config中为TOO_MANY_REDIRECTS)
  6. 我遇到的另一个问题是从http-> https重定向工作正常,但我无法从https-> http中恢复;
  7. 从可用选项中考虑您的场景(通常不应该混合)

HttpRedirect:

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

UrlRewrite:

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
© www.soinside.com 2019 - 2024. All rights reserved.