> I am suing the urlnormalizer plugin (urlnormalizer-(pass|regex|basic)) and
I
> put the below rule in the conf/regex-normalize.xml file
> 
> <regex>
>   <pattern>\s</pattern>
>   <substitution>%20</substitution>
> </regex>
> 


Should be escaped backslash:
  <pattern>\\s</pattern>


You can also use + (plus) instead of %20.




Reply via email to