Search
Home IIS.NET Forums IIS 7 & IIS 8 URL Rewrite Module Need Help to Back to root using url rewriting
Last post Aug 14, 2012 12:28 PM by rrajeshk
5 Posts
May 08, 2012 11:32 AM|LINK
2335 Posts
Microsoft
May 10, 2012 06:55 AM|LINK
Hi,
You can use the following rule to implement the redirection:
<rewrite> <rules> <rule name="Redirect Login.aspx" stopProcessing="true"> <match url="^rdrmo/Login\.aspx" /> <conditions> <add input="{HTTP_HOST}" pattern="^fr208\.amer\.corp\.net$" /> </conditions> <action type="Redirect" url="login.aspx" /> </rule> </rules> </rewrite>
Feel free to let me know if you need further help on this task, thanks.
Aug 14, 2012 12:28 PM|LINK
rrajeshk
5 Posts
Need Help to Back to root using url rewriting
May 08, 2012 11:32 AM|LINK
Lloydz
2335 Posts
Microsoft
Re: Need Help to Back to root using url rewriting
May 10, 2012 06:55 AM|LINK
Hi,
You can use the following rule to implement the redirection:
<rewrite>
<rules>
<rule name="Redirect Login.aspx" stopProcessing="true">
<match url="^rdrmo/Login\.aspx" />
<conditions>
<add input="{HTTP_HOST}" pattern="^fr208\.amer\.corp\.net$" />
</conditions>
<action type="Redirect" url="login.aspx" />
</rule>
</rules>
</rewrite>
Feel free to let me know if you need further help on this task, thanks.
rrajeshk
5 Posts
Re: Need Help to Back to root using url rewriting
Aug 14, 2012 12:28 PM|LINK