我使用IIS 7.5和URL重写。
我有以下文件层次结构中的网站:
webroot
webroot/LegacySite
双方的webroot /和传统的/是单独的应用程序文件夹中的IIS。
我需要重写我的网址,以便:
- 如果请求http://mysite.co/LegacySite/page.aspx的URL将被改写,以http://mysite.co/page.aspx
下面我Web.Conf
(在Web根目录文件夹)不能正常工作,你能指出我错过了什么?
<?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>