Guys! I'm using Tuckey URL Rewrite Filter and I want all those requests which were not started with "/specialUrl/" being now prefixed with "/prefixUrl/". For example:
How should I describe such a rule(s)?
You can use this rule:
<rule match-type="regex">
<condition name="request-uri" operator="notequal">^/specialUrl/.*$</condition>
<from>^/(.*)$</from>
<to type="permanent-redirect">/specialUrl/$1</to>
</rule>