is there a way to run the filter before the rewrite? for example ``` filter rule { path somePath search_pattern <title>(.*)</title> replacement "<title>Some Title</title>" } rewrite { to {path} {path}/ / } ``` in this example the path is always `/` because of the rewrite .... so the rule never matches anything other than `/` .
is there a way to run the filter before the rewrite? for example
in this example the path is always
/because of the rewrite .... so the rule never matches anything other than/.