I want to match all paths that:
don't start with "/foo-bar/"
or not ends with any extension (.jpg, .gif, etc)
examples:
/foo-bar/aaaa/fff will not match
/foo-bar/aaaa/fff.jpg will not match
/aaa/bbb will match
/aaaa/bbbb.jpg will not match
/bbb.a will not match
this is my regex:
^\/(?!foo-bar\/).*(?!\.).*$
but is not working, why?
thanks!