I use IIS 7.5 and URL Rewrite.
I have a website with file hierarchy in this way:
webroot
webroot/LegacySite
both webroot and legacy are separated App-Folders in IIS.
I need Rewrite my URLs so:
- If a request is http://mysite.co/LegacySite/page.aspx the URL will be rewritten to http://mysite.co/page.aspx
Here my Web.Conf present in webroot folder, at the moment does not work properly, could you point me our what I'm missing?
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="MyRole" stopProcessing="true">
<match url=".*" />
<conditions>
<add input="{HTTP_HOST}" pattern="^mysite.com" />
<add input="{PATH_INFO}" pattern="^\LegacySite\" negate="true" />
</conditions>
<action type="Rewrite" url="\LegacySite\{R:0}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>