基于web.config的url重写的绝对最小内容是多少?

时间:2011-03-18 19:10:03

标签: asp.net iis iis-7 url-rewriting

我将在不久的将来在IIS7服务器上部署应用程序,并希望使用web.config中的每应用程序URL重写设置,但这一个ASP.NET应用程序,所以我不需要任何多余的东西。

为了运行我的应用程序并使用URL重写,我在web.config中需要的绝对最低值是多少?

1 个答案:

答案 0 :(得分:7)

经过大量的谷歌搜索和绊倒各种文章后,我发现this article,这需要安装URL重写模块(未与IIS7一起打包)。之后就很简单了。

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
            <rules>
                <rule>
                    <match url="start\.html" />
                    <action type="Rewrite" url="finish.html" />
                </rule>
            </rules>
        </rewrite>
    </system.webServer>
</configuration>

我很惊讶需要额外的下载 - 我认为这个功能应该被烘焙(在Win7x64上测试)。哦,好吧,至少它有效。