简体   繁体   中英

IIS URL Rewrite is not working when redirecting to another server

I need to redirect links to a different server using URL rewrite in IIS. These are SRSS report links. I have tried so many different configurations i have given up.

Old Link:

http://OldServer/ReportServer/Pages/ReportViewer.aspx?(reportnamehere - need to copy this part across to new link)

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

Any ideas how this can be achieved?

This is a very simple rule requirement. Something like this will work. Basically just redirects to a new server appending the entire URL

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM