如何在IIS中重写此URL
mysite.com/profile.aspx?user=foo
到
mysite.com/foo
我在.htaccess中试过的重写条件
RewriteRule /foo/(.*) /bar?arg=P1\%3d$1 [R,NE]
但是如何在IIS Url Rewrite中执行此操作?
答案 0 :(得分:1)
很简单:
<rule name="Profile Rewrite" 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="profile.aspx?user={R:1}" />
</rule>
请注意,您的Apache重写规则实际上根本不会执行您期望的操作。另请注意,您可以从IIS管理器中的URL重写可视配置工具轻松生成此内容。