0

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

我想将 URL 中任何出现的“newjersey”替换为“new-jersey”。

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

4

1 回答 1

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" />

于 2013-01-24T14:41:42.340 回答