Iis 7 windows 7上IIS7中的404和URL重写模块

Iis 7 windows 7上IIS7中的404和URL重写模块,iis-7,url-rewriting,Iis 7,Url Rewriting,我正试图通过IIS7(windows 7)上的“使用URL重写模块”重写URL URL: 重写URL: 重写规则: <rewrite> <rules> <rule name="RewriteUserFriendlyURL1" stopProcessing="true"> <match url="^AIM/group-discussion/videos/([^/

我正试图通过IIS7(windows 7)上的“使用URL重写模块”重写URL

URL:

重写URL:

重写规则:

<rewrite>
            <rules>
                <rule name="RewriteUserFriendlyURL1" stopProcessing="true">
                    <match url="^AIM/group-discussion/videos/([^/]+)/([^/]+)/?$" />
                    <conditions>
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                    </conditions>
                    <action type="Rewrite" url="AIM/group-discussion/videos.aspx?id={R:1}&amp;title={R:2}" />
                </rule>
            </rules>
        </rewrite>
我正在“集成管道模式”下运行站点

MODULE_SET_RESPONSE_ERROR_STATUS

ModuleName="IIS Web Core", Notification="MAP_REQUEST_HANDLER", HttpStatus="404", HttpReason="Not Found", HttpSubStatus="0", ErrorCode="The system cannot find the file specified.
 (0x80070002)", ConfigExceptionInfo=""