2013-01-24 96 views
0

有人可以協助重定向規則嗎?web.config的特定重定向/重寫規則

我希望在「新澤西州」的任何地方任何地方換掉任何「newjersey」字樣。

關於如何通過web.config來做到這一點的任何建議將是非常好的,因爲我需要馬上做到這一點。 TIA!

回答

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