私はこれを初めて行うので、助けが必要です。url rewrite 2.0 を使用してコードを作成し、クエリに基づいて url rewrite を作成する方法。
する必要がある:
www.Example/Ekonomija/Ekonomija.aspx?Ekonomija=something
することが
www.Example/Ekonomija/something
と
www.Example/Test2/Test2.aspx?Test2=something
することが
www.Example/Test2/something
と
www.Example/Test3/Test3.aspx?Test3=something
することが
www.Example/Test3/something
等々 ....
URL 書き換えによる解決策が必要: 2.0
編集 済み試してみました....しかし、最初の役割はうまく機能しますが、2番目の役割には問題があります。おそらく、クエリ文字列が正確に実行されていないため、わかりません。
<rule name="RedirectUserFriendlyURL1" stopProcessing="true">
<match url="^Ekonomija/Ekonomija\.aspx$" />
<conditions>
<add input="{REQUEST_METHOD}" pattern="^POST$" negate="true" />
<add input="{QUERY_STRING}" pattern="^([^=&]+)=([^=&]+)$" />
</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="Ekonomija/Ekonomija.aspx?{R:1}={R:2}" />
</rule>
<rule name="RedirectUserFriendlyURL2" stopProcessing="true">
<match url="^Test2/Test2\.aspx$" />
<conditions>
<add input="{REQUEST_METHOD}" pattern="^POST$" negate="true" />
<add input="{QUERY_STRING}" pattern="^([^=&]+)=([^=&]+)$" />
</conditions>
<action type="Redirect" url="{C:1}/{C:2}" appendQueryString="false" />
</rule>
<rule name="RewriteUserFriendlyURL2" 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="Test2/Test2.aspx?{R:1}={R:2}" />
</rule>