我使用 IIS 7.5 和 URL 重写。
我有一个具有以下文件层次结构的网站:
webroot
webroot/LegacySite
webroot/ 和 legacy/ 都是 IIS 中单独的 App-Folders。
我需要重写我的网址:
- 如果请求是http://mysite.co/LegacySite/page.aspx,则 URL 将被重写为http://mysite.co/page.aspx
在我的Web.Conf
(在 webroot 文件夹中)下面不能正常工作,你能指出我缺少什么吗?
<?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>