将http Web窗体查询字符串重定向到https

时间:2016-03-30 02:21:16

标签: c# asp.net-mvc redirect webforms

我已经将旧的Web表单网站重新开发为ASP MVC web api。一些旧网址出现在搜索引擎和论坛上,包含旧的网络表单网址和查询字符串,我需要通过查询字符串ID查找这些网址并使用变量名重定向到新网站。我已将ASP Web表单页面添加到我的根MVC应用程序以执行重定向。问题是,当我在我的localhost上尝试代码时,它可以工作,但是当我在实时网站上尝试它时,它会重定向到主页。这可能是因为我有一个重写规则将所有http:重定向到https。我不确定。

当前bing url http://www.domain.com/View.aspx?ID=1

这有效https://www.domain.com/View.aspx?ID=1(https而不是http)

重定向到http://www.domain.com/NewPath/SampleName

代码如下

try
{
  string url = "https://domain.com/NewPath/" + getNewName(Request.QueryString["id"]);
  Response.Redirect(url, false);
  HttpContext.Current.ApplicationInstance.CompleteRequest();
}
catch (Exception)
{
  Response.Redirect("https://domain.com");
}

Web配置重写规则

<location path="app/views">
    <system.webServer>
      <staticContent>
        <clientCache cacheControlMode="DisableCache" />
      </staticContent>
    </system.webServer>
</location>

<rewrite>
      <rules>
        <rule name="SecureRedirect" stopProcessing="true">
          <match url="^(.*)$" />
          <conditions>
            <add input="{HTTPS}" pattern="off" />
            <add input="{HTTP_HOST}" pattern="^(www\.)?(.*)$" />
          </conditions>
          <action type="Redirect" url="https://{C:2}" redirectType="Permanent" />
        </rule>
      </rules>
</rewrite>

1 个答案:

答案 0 :(得分:0)

IIS重写规则

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
            <rules>
                <rule name="Redirect to Https" stopProcessing="true">
                    <match url="(.*)" />
                    <conditions>
                        <add input="{HTTPS}" pattern="^OFF$" />
                    </conditions>
                    <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="SeeOther" />
                </rule>
            </rules>
        </rewrite>
    </system.webServer>
</configuration>

此网址有助于http://www.jppinto.com/2010/03/automatically-redirect-http-requests-to-https-on-iis7-using-url-rewrite-2-0/