我第一次做这个需要帮助。如何使用 url rewrite 2.0 编写代码以根据查询重写 url。
我需要:
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
编辑 我尝试....但我有问题第一个角色工作得很好,但第二个没有,可能查询字符串没有准确完成,不知道。
<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>