12

我使用 IIS 7.5 和 URL 重写。

我有一个具有以下文件层次结构的网站:

webroot
webroot/LegacySite

webroot/ 和 legacy/ 都是 IIS 中单独的 App-Folders。


我需要重写我的网址:

在我的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>
4

1 回答 1

20

以下应该有效:

<rule name="MyRole" stopProcessing="true">
    <match url="LegacySite/(.*)" />
    <conditions>
        <add input="{HTTP_HOST}" pattern="^mysite.com$" />
    </conditions>
    <action type="Rewrite" url="/{R:1}" appendQueryString="true" />
</rule>

您可能希望删除检查主机名的条件。这真的很重要吗?您是否有任何其他域名绑定到您不希望发生重定向的该网站?似乎没有必要。您可能只需要:

<rule name="MyRole" stopProcessing="true">
    <match url="LegacySite/(.*)" />
    <action type="Rewrite" url="/{R:1}" appendQueryString="true" />
</rule>

我添加appendQueryString="true"了将任何(可选)查询字符串参数传递给重写的 URL。

于 2012-05-25T14:05:43.580 回答