专家!我正在使用Tuckey URL重写过滤器,我希望所有那些不以“/ specialUrl /”开头的请求现在以“/ prefixUrl /”作为前缀。例如:
我应该如何描述这样的规则?
答案 0 :(得分:2)
您可以使用此规则:
<rule match-type="regex">
<condition name="request-uri" operator="notequal">^/specialUrl/.*$</condition>
<from>^/(.*)$</from>
<to type="permanent-redirect">/specialUrl/$1</to>
</rule>