Search
Home IIS.NET Forums IIS 7 and Above Web Farms ARR redirect url to different IP
Last post Sep 06, 2018 05:04 AM by deepakpanchal10
1 Post
Sep 04, 2018 05:20 PM|Kinzinho|LINK
Hi, i have IIS8 installed and running in
10.10.10.1 - mysite.com
10.10.10.2 - Sql Report Server
I need access:
mysite.com/reportServer
redirect to:
10.10.10.2/report ( without changing url domain mysite.com/report )
8073 Posts
MVP
Sep 04, 2018 06:38 PM|lextm|LINK
https://docs.microsoft.com/en-us/iis/extensions/url-rewrite-module/reverse-proxy-with-url-rewrite-v2-and-application-request-routing
Very basic reverse proxy setup which you can learn from the link.
529 Posts
Microsoft
Sep 06, 2018 05:04 AM|deepakpanchal10|LINK
Hello Kinzinho,
You could try to check if below rewrite rule could work for you.
<rule name="RewriteToReport" stopProcessing="true">
<match url="reportServer" />
<conditions>
<add input="{HTTP_HOST}" pattern="mysite.com" />
</conditions>
<action type="Rewrite" url="http://10.10.10.2/report" />
</rule>
Best Regards,
1 Post
ARR redirect url to different IP
Sep 04, 2018 05:20 PM|Kinzinho|LINK
Hi, i have IIS8 installed and running in
10.10.10.1 - mysite.com
10.10.10.2 - Sql Report Server
I need access:
mysite.com/reportServer
redirect to:
10.10.10.2/report ( without changing url domain mysite.com/report )
8073 Posts
MVP
Re: ARR redirect url to different IP
Sep 04, 2018 06:38 PM|lextm|LINK
https://docs.microsoft.com/en-us/iis/extensions/url-rewrite-module/reverse-proxy-with-url-rewrite-v2-and-application-request-routing
Very basic reverse proxy setup which you can learn from the link.
https://lextudio.com
---------------------------
This posting is provided "AS IS" with no warranties, and confers no rights.
529 Posts
Microsoft
Re: ARR redirect url to different IP
Sep 06, 2018 05:04 AM|deepakpanchal10|LINK
Hello Kinzinho,
You could try to check if below rewrite rule could work for you.
<rule name="RewriteToReport" stopProcessing="true">
<match url="reportServer" />
<conditions>
<add input="{HTTP_HOST}" pattern="mysite.com" />
</conditions>
<action type="Rewrite" url="http://10.10.10.2/report" />
</rule>
Best Regards,
Please remember to click "Mark as Answer" the responses that resolved your issue.
If you have any compliments or complaints to MSDN Support, feel free to contact MSDNFSF@microsoft.com.