重定向到另一台服务器时,IIS URL重写不起作用

时间:2019-04-17 21:39:18

标签: url iis url-rewriting

我需要使用IIS中的URL重写将链接重定向到其他服务器。这些是SRSS报告链接。我已经尝试了很多不同的配置。

旧链接:

http://OldServer/ReportServer/Pages/ReportViewer.aspx?(reportnamehere-需要将此部分复制到新链接)

http://NewServer/ReportServer/Pages/ReportViewer.aspx?reportnamehere

有什么想法可以实现吗?

1 个答案:

答案 0 :(得分:0)

这是一个非常简单的规则要求。这样的事情会起作用。基本上只是重定向到附加整个URL的新服务器

<rule name="Redirect to newServer" stopProcessing="true">  
    <match url="(.*)" />      
    <action type="Redirect" url="http://NewServer/{R:1}" redirectType="Temporary" />  
</rule>