3

我已经通过 IIS 定义了一个 URL 重写规则。基本上它变成了这样:

Article.aspx?ID=1&FriendlyURL=whatever

进入

/1/whatever

请注意,重定向工作正常,但除非我在 Article.aspx 页面内,否则不会翻译 URL 重写(页面内的链接)。

如何使重写规则适用于所有页面而不是仅适用于一个页面?我在 Web.Config 的书面规则下方发布供您参考。谢谢。

<system.webServer>
    <rewrite>
        <outboundRules>
            <rule name="OutboundRewriteUserFriendlyURL1" preCondition="ResponseIsHtml1">
                <match filterByTags="A, Form, Img" pattern="^(.*/)Article\.aspx\?ID=([^=&amp;]+)&amp;(?:amp;)?FriendlyURL=([^=&amp;]+)$" />
                <action type="Rewrite" value="{R:1}{R:2}/{R:3}/" />
            </rule>
            <preConditions>
                <preCondition name="ResponseIsHtml1">
                    <add input="{RESPONSE_CONTENT_TYPE}" pattern="^text/html" />
                </preCondition>
            </preConditions>
        </outboundRules>
        <rewriteMaps>
            <rewriteMap name="Article Rewrite">
                <add key="Article.aspx?ID=1&amp;FriendlyURL=whatever" value="/1/whatever" />
            </rewriteMap>
        </rewriteMaps>
        <rules>
            <rule name="RedirectUserFriendlyURL1" stopProcessing="true">
                <match url="^Article\.aspx$" />
                <conditions>
                    <add input="{REQUEST_METHOD}" pattern="^POST$" negate="true" />
                    <add input="{QUERY_STRING}" pattern="^ID=([^=&amp;]+)&amp;FriendlyURL=([^=&amp;]+)$" />
                </conditions>
                <action type="Redirect" url="{C:1}/{C:2}" appendQueryString="false" />
            </rule>
            <rule name="RewriteUserFriendlyURL1" stopProcessing="true">
                <match url="^([^/]+)/([^/]+)/?$" />
                <conditions>
                    <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                    <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                </conditions>
                <action type="Rewrite" url="Article.aspx?ID={R:1}&amp;FriendlyURL={R:2}" />
            </rule>
        </rules>

    </rewrite>
</system.webServer>
4

3 回答 3

1

因此,我最后不得不通过在代码中设置“href”属性来硬编码链接以使其对 url 友好。

像这样的东西:

 <a href='/1/hello-world/'>Read the "Hello World" Article</a>

谢谢。

于 2013-09-07T11:05:01.520 回答
0

问题出在您的 OutboundRewrite 规则的正则表达式中。我建议您使用像expresso(我最喜欢的)这样的正则表达式工具,从一个非常简单的正则表达式开始,然后根据您的情况增加复杂性。

与您的示例匹配的最简单的正则表达式是:

Article\.aspx\?ID=(\d)&FriendlyURL=(.*)

这是一个例子。神速。

于 2013-09-13T17:46:59.500 回答
0

我喜欢正则表达式问题,试试这个。

<system.webServer>
    <rewrite>
        <outboundRules>
            <clear />
            <rule name="OutboundRewriteUserFriendlyURL1"
                  preCondition="ResponseIsHtml1">
                <match filterByTags="A, Form, Img"
                       pattern="^(.*/)([^\.]+)\.aspx\?ID=([^=&amp;]+)&amp;(?:amp;)?FriendlyURL=([^=&amp;]+)$" />
                <conditions logicalGrouping="MatchAll"
                            trackAllCaptures="true" />
                <action type="Rewrite"
                        value="{R:1}{R:2}/{R:3}/{R:4}/" />
            </rule>
            <rule name="OutboundRewriteUserFriendlyURL2"
                  preCondition="ResponseIsHtml1">
                <match filterByTags="A, Form, Img"
                       pattern="^(.*)\?ID=([^=&amp;]+)&amp;(?:amp;)?FriendlyURL=([^=&amp;]+)$" />
                <conditions logicalGrouping="MatchAll"
                            trackAllCaptures="true" />
                <action type="Rewrite"
                        value="" />
            </rule>
            <preConditions>
                <preCondition name="ResponseIsHtml1">
                    <add input="{RESPONSE_CONTENT_TYPE}"
                         pattern="^text/html" />
                </preCondition>
            </preConditions>
        </outboundRules>
        <rewriteMaps>
            <rewriteMap name="Article Rewrite">
                <add key="Article.aspx?ID=1&amp;FriendlyURL=whatever"
                     value="/1/whatever" />
            </rewriteMap>
        </rewriteMaps>
        <rules>
            <rule name="RedirectUserFriendlyURL1"
                  stopProcessing="true">
                <match url="^([^\.]+)\.aspx$" />
                <conditions>
                    <add input="{REQUEST_METHOD}"
                         pattern="^POST$"
                         negate="true" />
                    <add input="{QUERY_STRING}"
                         pattern="^ID=([^=&amp;]+)&amp;FriendlyURL=([^=&amp;]+)$" />
                </conditions>
                <action type="Redirect"
                        url="{R:1}/{C:1}/{C:2}"
                        appendQueryString="false" />
            </rule>
            <rule name="RewriteUserFriendlyURL1"
                  stopProcessing="true">
                <match url="^([^/]+)/([^/]+)/([^/]+)/?$" />
                <conditions>
                    <add input="{REQUEST_FILENAME}"
                         matchType="IsFile"
                         negate="true" />
                    <add input="{REQUEST_FILENAME}"
                         matchType="IsDirectory"
                         negate="true" />
                </conditions>
                <action type="Rewrite"
                        url="{R:1}.aspx?ID={R:2}&amp;FriendlyURL={R:3}" />
            </rule>
        </rules>
    </rewrite>
    <urlCompression doStaticCompression="false"
                    doDynamicCompression="false" />
</system.webServer>
于 2013-09-06T21:25:00.200 回答