web.config的特定重定向/重写规则

时间:2013-01-24 13:52:09

标签: iis url-rewriting

有人可以协助重定向规则吗?

我想在“新泽西”网址的任何地方交换“newjersey”的任何内容。

关于如何通过web.config执行此操作的任何建议都会很棒,因为我需要立即执行此操作。 TIA!

1 个答案:

答案 0 :(得分:0)

通过以下方式实现:

<rule name="Redirect {1}/newjersey" stopProcessing="true">
<match url="^([^/]+)/newjersey$" ignoreCase="false" />
<conditions trackAllCaptures="true">
  <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
  <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Redirect" url="/{R:1}/new-jersey" appendQueryString="false" />