使用’的URL重写IIS7 URL

我正在尝试使用URL重写模块在IIS7中redirect以下URL:

Category/Cat-3/Objectives-of-Pre-Maintenance/WHAT’S-THE-STORY-ON-LOW-CARB-DIETS-AND-EXERCISE-.aspx 

但为了我的生活,我无法得到它。 我尝试更换’ 与一个实际的单引号,这工作得很好! 但为了这个redirect的目的,我需要HTML代码的报价,而不是报价本身。 这是从networkingconfiguration的规则:

 <rule name="Redirect" patternSyntax="ECMAScript" stopProcessing="true"> <match url="^Category/Cat-3/Objectives-of-Pre-Maintenance/WHAT&amp;rsquo;S-THE-STORY-ON-LOW-CARB-DIETS-AND-EXERCISE-\.aspx" /> <conditions> <add input="{HTTP_HOST}" pattern="www.example.com" /> </conditions> <action type="Redirect" url="http://www.example.com/redirecturl/" appendQueryString="false" /> </rule> 

任何想法将是非常有益的! 谢谢

你有没有试过这个代码? &#39;