I recently was given the task of setting up a proxy and everything works great now, except that I can't seem to filter basic urls with sub_filter. This code works flawlessly
sub_filter 'anna' 'bob';
But the second I add a slash to the search pattern, like this
sub_filter '/anna' 'bob';
The filter stops working. I tried escaping the slash with a backslash but also that failed.
Is there any special regex I'm not aware of? Thanks