0

URL を書き換える必要があります。

http://www.mydomain.com/test.aspx?pagename=quotes&companycode=324543 http://www.mydomain.com/test/quotes/324543

IIS 7.5 と VS 2008 を使用しています。

web.config にルール コードを記述する必要があります。

4

1 に答える 1

0

IIS GUI でウィザードを使用すると、リダイレクトと対応する書き換えルールが表示されます。それはまさにあなたが望むものではないかもしれませんが、あなたに良いアイデアを与えるはずです.

            <rule name="RedirectUserFriendlyURL1" stopProcessing="true">
                <match url="^test\.aspx$" />
                <conditions>
                    <add input="{REQUEST_METHOD}" pattern="^POST$" negate="true" />
                    <add input="{QUERY_STRING}" pattern="^pagename=([^=&amp;]+)&amp;companycode=([^=&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="test.aspx?pagename={R:1}&amp;companycode={R:2}" />
            </rule>
于 2012-07-30T10:18:45.443 に答える